Version: 2021.3
언어: 한국어

AssetDatabase.GetAssetOrScenePath

매뉴얼로 전환
public static string GetAssetOrScenePath (Object assetObject);

설명

Returns the path name relative to the project folder where the asset is stored.

All paths are relative to the project folder, for example: "Assets/MyTextures/hello.png" When a game object is part of a Scene, the Scene path is returned.

using UnityEditor;
using UnityEditor.SceneManagement;
using UnityEngine;
using UnityEngine.SceneManagement;

public class AssetDatabaseExamples : MonoBehaviour { [MenuItem("AssetDatabase/Get Asset Or Scene Path Example")] static void GetAssetOrScenePathExample() { var asset = AssetDatabase.LoadAssetAtPath("Assets/Prefabs/Cube123.prefab", typeof(GameObject)); //This will output Assets/Prefabs/Cube123.prefab Debug.Log(AssetDatabase.GetAssetOrScenePath(asset)); var clone = Instantiate(asset); EditorSceneManager.SaveScene(SceneManager.GetActiveScene()); //This will output Assets/Scenes/SampleScene.unity Debug.Log(AssetDatabase.GetAssetOrScenePath(clone)); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961