This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/NaughtyAttributes/Scripts/Editor/FieldDrawers/ShowNonSerializedFieldFieldDrawer.cs
2020-07-09 11:41:01 -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);
}
}
}
}