比如编辑模式下对场景或者特定文件夹有一些操作可以在这个面板里来完成。。
代码如下。
using UnityEngine; using System.Collections; using UnityEditor; [CustomEditor(typeof(UnityEditor.DefaultAsset))] public class CustomInspector : Editor { public override void OnInspectorGUI () { string path = AssetDatabase.GetAssetPath(target); GUI.enabled = true; if(path.EndsWith(".unity")) { GUILayout.Button("我是场景"); }else if(path.EndsWith("")){; GUILayout.Button("我是文件夹"); } } }
如果你是unity5.3的话, 想在场景面板上面绘制东西需要使用 UnityEditor.SceneAsset
[CustomEditor(typeof(UnityEditor.SceneAsset))]
- 本文固定链接: http://www.xuanyusong.com/archives/3685
- 转载请注明: 雨松MOMO 2015年10月23日 于 雨松MOMO程序研究院 发表