您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
25 行
966 B
25 行
966 B
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// Custom base editor class with handy methods for GUI drawing.
|
|
/// </summary>
|
|
public class CustomBaseEditor : Editor
|
|
{
|
|
/// <summary>
|
|
/// Draw the default, non-editable script field. Useful when creating a custom Inspector but we want it to look like a default one.
|
|
/// Plus, it's handy to be able to click on the field to ping the Script in the Project window.
|
|
/// </summary>
|
|
/// <typeparam name="T">Inspected type.</typeparam>
|
|
public void DrawNonEditableScriptReference<T>() where T : Object
|
|
{
|
|
GUI.enabled = false;
|
|
|
|
if (typeof(ScriptableObject).IsAssignableFrom(typeof(T)))
|
|
EditorGUILayout.ObjectField("Script", MonoScript.FromScriptableObject((ScriptableObject)target), typeof(T), false);
|
|
else if (typeof(MonoBehaviour).IsAssignableFrom(typeof(T)))
|
|
EditorGUILayout.ObjectField("Script", MonoScript.FromMonoBehaviour((MonoBehaviour)target), typeof(T), false);
|
|
|
|
GUI.enabled = true;
|
|
}
|
|
}
|