确定对象是否存储在磁盘上。
通常,诸如预制件、纹理、音频剪辑、动画剪辑、材质之类的资源存储在磁盘上。
如果对象位于场景中,则返回 false。通常这是游戏对象或组件,但也可能是从代码创建但未存储在资源中,而是存储在场景中的材质。
using UnityEditor; using UnityEngine;
// Tells if an Object is stored on disk or not. public class PersistentInfo : EditorWindow { [MenuItem("Examples/Object on Disk?")] static void CheckPersistent() { bool persistent = EditorUtility.IsPersistent(Selection.activeObject); Debug.Log(Selection.activeObject.name + ": " + (persistent ? "Stored on disk" : "Not on disk")); }
[MenuItem("Examples/Object on Disk?", true)] static bool ValidateCheckPersistent() { return Selection.activeObject != null; } }