TestSettingsEditor.cs 305 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 using UnityEditor; namespace Unity.XR.Management.TestPackage.Editor { [CustomEditor(typeof(TestSettings))] public class TestSettingsEditor : UnityEditor.Editor { public override void OnInspectorGUI() { EditorGUILayout.LabelField("Test only..."); } } }