您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
25 行
1019 B
25 行
1019 B
using System.Reflection;
|
|
using UnityEditor;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
[FieldDrawer(typeof(ShowNonSerializedFieldAttribute))]
|
|
public class ShowNonSerializedFieldFieldDrawer : FieldDrawer
|
|
{
|
|
public override void DrawField(UnityEngine.Object target, FieldInfo field)
|
|
{
|
|
object value = field.GetValue(target);
|
|
|
|
if (value == null)
|
|
{
|
|
string warning = string.Format("{0} doesn't support {1} types", typeof(ShowNonSerializedFieldFieldDrawer).Name, "Reference");
|
|
EditorDrawUtility.DrawHelpBox(warning, MessageType.Warning, context: target);
|
|
}
|
|
else if (!EditorDrawUtility.DrawLayoutField(value, field.Name))
|
|
{
|
|
string warning = string.Format("{0} doesn't support {1} types", typeof(ShowNonSerializedFieldFieldDrawer).Name, field.FieldType.Name);
|
|
EditorDrawUtility.DrawHelpBox(warning, MessageType.Warning, context: target);
|
|
}
|
|
}
|
|
}
|
|
}
|