Files
PixelJumperHero/Assets/AnimationImporter/Editor/Config/AnimationImporterSharedConfigEditor.cs
2021-06-13 10:25:49 +02:00

18 lines
376 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
namespace AnimationImporter
{
[CustomEditor(typeof(AnimationImporterSharedConfig))]
public class AnimationImporterSharedConfigEditor : Editor
{
public override void OnInspectorGUI ()
{
GUI.enabled = false;
base.OnInspectorGUI ();
GUI.enabled = true;
}
}
}