First commit

This commit is contained in:
Bruno Rybársky 2021-06-13 10:25:49 +02:00
parent e2ee6314b1
commit eb70603c85

@ -0,0 +1,18 @@
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;
}
}
}