diff --git a/Assets/MackySoft/MackySoft.SerializeReferenceExtensions/Example/ExampleAssets/Scripts/Editor/ExampleEditor.cs b/Assets/MackySoft/MackySoft.SerializeReferenceExtensions/Example/ExampleAssets/Scripts/Editor/ExampleEditor.cs index 2925c45..8cea2c4 100644 --- a/Assets/MackySoft/MackySoft.SerializeReferenceExtensions/Example/ExampleAssets/Scripts/Editor/ExampleEditor.cs +++ b/Assets/MackySoft/MackySoft.SerializeReferenceExtensions/Example/ExampleAssets/Scripts/Editor/ExampleEditor.cs @@ -2,10 +2,10 @@ using UnityEditor; namespace MackySoft.SerializeReferenceExtensions.Example.Editor { - [CustomEditor(typeof(Example))] + // Enabling the custom editor slowdown rendering performance. + //[CustomEditor(typeof(Example))] public class ExampleEditor : UnityEditor.Editor { - // Enabling the custom editor slowdown rendering performance. public override void OnInspectorGUI () { base.OnInspectorGUI(); }