Answers for "Dirty property unity"

C#
0

Dirty property unity

//Make a begin and a end property around it
using unityEditor;

public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) {
  EditorGUI.BeginProperty(position, label, property);
  EditorGUILayout.PropertyField(property);
  EditorGUI.EndProperty();
}
Posted by: Guest on August-16-2021

C# Answers by Framework

Browse Popular Code Answers by Language