instanceID | 资源的实例 ID。 |
assetObject | 资源的引用。 |
字符串 资源路径名,如果资源不存在,则为 null 或空字符串。
返回资源存储的项目文件夹的相对路径名。
所有路径均相对于项目文件夹,例如:“Assets/MyTextures/hello.png”。
using UnityEngine; using UnityEditor;
public class CreateMaterialExample : MonoBehaviour { [MenuItem("GameObject/Create Material")] static void CreateMaterial() { // Create a simple material asset
Material material = new Material(Shader.Find("Specular")); AssetDatabase.CreateAsset(material, "Assets/MyMaterial.mat");
// Print the path of the created asset Debug.Log(AssetDatabase.GetAssetPath(material)); } }