18 lines
376 B
C#
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;
|
|
}
|
|
}
|
|
} |