2020-05-16 15:17:04 +02:00
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
[CustomPropertyDrawer(typeof(SerializeReferenceButtonAttribute))]
|
|
|
|
|
public class SerializeReferenceButtonAttributeDrawer : PropertyDrawer
|
|
|
|
|
{
|
|
|
|
|
public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
|
|
|
|
|
{
|
|
|
|
|
return EditorGUI.GetPropertyHeight(property, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EditorGUI.BeginProperty(position, label, property);
|
|
|
|
|
|
|
|
|
|
var labelPosition = new Rect(position.x, position.y, position.width, EditorGUIUtility.singleLineHeight);
|
|
|
|
|
EditorGUI.LabelField(labelPosition, label);
|
|
|
|
|
|
2020-05-16 19:15:24 +02:00
|
|
|
|
var typeRestrictions = SerializedReferenceUIDefaultTypeRestrictions.GetAllBuiltInTypeRestrictions(fieldInfo);
|
2020-05-16 15:17:04 +02:00
|
|
|
|
property.DrawSelectionButtonForManagedReference(position, typeRestrictions);
|
|
|
|
|
|
|
|
|
|
EditorGUI.PropertyField(position, property, GUIContent.none, true);
|
|
|
|
|
|
|
|
|
|
EditorGUI.EndProperty();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|