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