版本: Unity 6 (6000.0)
语言English
  • C#

EditorApplication.applicationPath

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但我们确实会阅读用户提出的每个更改建议,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public static string applicationPath;

描述

获取 Unity 编辑器应用程序的路径。(只读)

Unity 编辑器的路径可能因您的配置而异。如果您从 Windows 上的 Hub 安装了 2021.3 编辑器,则您的路径可能类似于:C:/Program Files/Unity/Hub/Editor/2021.3.10f1/Editor/Unity.exe。其他资源:applicationContentsPath

// Display file system location where the Unity
// executable is stored.

using UnityEditor; using UnityEngine;

public class ApplicationPathExample { // Create a menu item called "Location of Unity application" in the "Examples" Menu. // In the Editor, click on "Location of Unity Application" in the menu to display the path to the Unity executable in the Console. [MenuItem("Examples/Location of Unity application")] static void AppPath() { Debug.Log(EditorApplication.applicationPath); } }