Files
NovaFree/Scripts/Editor/InternalScript_42.cs
2025-08-02 20:11:41 +08:00

20 lines
585 B
C#

// Copyright (c) Supernova Technologies LLC
using UnityEditor;
using UnityEngine;
namespace Nova.InternalNamespace_17
{
[CustomEditor(typeof(UIBlockActivator))]
internal class InternalType_530 : UnityEditor.Editor
{
public override void OnInspectorGUI() { hideFlags = target.hideFlags | HideFlags.HideInInspector; }
protected override void OnHeaderGUI() { }
protected override bool ShouldHideOpenButton() => true;
private void OnEnable()
{
hideFlags = target.hideFlags | HideFlags.HideInInspector;
}
}
}