cvr-props/Assets/ABI.CCK/Scripts/Editor/CCK_CVR_ActionEditor.cs

14 lines
380 B
C#
Raw Normal View History

2023-01-22 16:38:23 +01:00
using UnityEditor;
namespace ABI.CCK.Scripts.Editor
{
[CustomEditor(typeof(Components.CVRAction))]
2023-01-22 16:38:23 +01:00
public class CCK_CVR_ActionEditor : UnityEditor.Editor
{
public override void OnInspectorGUI()
{
EditorGUILayout.HelpBox("This component is not yet ready to use!", MessageType.Error);
DrawDefaultInspector();
2023-01-22 16:38:23 +01:00
}
}
}