| path | @param path Путь файловой системы для ассета. |
string GUID
Get the GUID for the asset at path.
Все пути относятся к папке проекта, например: "Assets/MyTextures/hello.png".
@MenuItem("AssetDatabase/AssetPathToGUID")
static function Example()
{
var t: String = AssetDatabase.AssetPathToGUID("Assets/texture.jpg");
Debug.Log(t);
}
using UnityEngine; using UnityEditor;
public class Example : MonoBehaviour { [MenuItem("AssetDatabase/AssetPathToGUID")] static void Doit() { string t = AssetDatabase.AssetPathToGUID("Assets/texture.jpg"); Debug.Log(t); } }
If the asset does not exist AssetPathToGUID will return nothing.