Version: 2022.2
언어: 한국어
public static string applicationPath ;

설명

Returns the path to the Unity editor application. (Read Only)

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

using UnityEditor; using UnityEngine;

public class ApplicationPathExample { [MenuItem("Examples/Location of Unity application")] static void AppPath() { Debug.Log(EditorApplication.applicationPath); } }