Skip to content

Instantly share code, notes, and snippets.

@aomnes
Created December 14, 2018 13:44
Show Gist options
  • Save aomnes/19b4d469131659fa9654769f98b26013 to your computer and use it in GitHub Desktop.
Save aomnes/19b4d469131659fa9654769f98b26013 to your computer and use it in GitHub Desktop.
Creat attribute [ReadOnly] with unity editor
using UnityEditor;
using UnityEngine;
public class ReadOnlyAttribute : PropertyAttribute
{
}
[CustomPropertyDrawer(typeof(ReadOnlyAttribute))]
public class ReadOnlyDrawer : PropertyDrawer
{
public override float GetPropertyHeight(SerializedProperty property,
GUIContent label)
{
return EditorGUI.GetPropertyHeight(property, label, true);
}
public override void OnGUI(Rect position,
SerializedProperty property,
GUIContent label)
{
GUI.enabled = false;
EditorGUI.PropertyField(position, property, label, true);
GUI.enabled = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment