pixelgon/Assets/NaughtyAttributes/Scripts/Editor/FieldDrawers/ShowNonSerializedFieldFieldDrawer.cs
2020-06-05 11:54:36 -07:00

25 lines
1,019 B
C#

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);
}
}
}
}