From e7a8195f17c598290cc1b256cf01025ae2b4caa7 Mon Sep 17 00:00:00 2001 From: mackysoft Date: Sat, 5 Mar 2022 02:15:38 +0900 Subject: [PATCH] Update ExampleEditor.cs --- .../Example/ExampleAssets/Scripts/Editor/ExampleEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }