Update ExampleEditor.cs

This commit is contained in:
mackysoft 2022-03-05 02:15:38 +09:00
parent 112b5f9457
commit e7a8195f17

View File

@ -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();
}