14 lines
No EOL
380 B
C#
Executable file
14 lines
No EOL
380 B
C#
Executable file
using UnityEditor;
|
|
|
|
namespace ABI.CCK.Scripts.Editor
|
|
{
|
|
[CustomEditor(typeof(Components.CVRAction))]
|
|
public class CCK_CVR_ActionEditor : UnityEditor.Editor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
EditorGUILayout.HelpBox("This component is not yet ready to use!", MessageType.Error);
|
|
DrawDefaultInspector();
|
|
}
|
|
}
|
|
} |