这是第一个 Unity 开放项目的repo,是 Unity 和社区合作创建的一个小型开源游戏演示,第一款游戏是一款名为 Chop Chop 的动作冒险游戏。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

28 行
929 B

using UnityEditor;
using UnityEngine;
/// <summary>
/// Custom base editor class. Inherited from Editor class.
/// Contains handy method to use.
/// </summary>
public class CustomBaseEditor : Editor
{
/// <summary>
/// Draw reference information about script being edited.
/// </summary>
/// <typeparam name="T">Inspected type.</typeparam>
public void DrawNonEdtiableScriptReference<T>() where T : Object
{
//Make GUI not editable.
GUI.enabled = false;
//Draw reference information about script being edited
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);
//Make GUI editable
GUI.enabled = true;
}
}