23 lines
345 B
C#
23 lines
345 B
C#
using Godot;
|
|
using System;
|
|
|
|
#if TOOLS
|
|
namespace BITKit;
|
|
[Tool]
|
|
public partial class BITGodotPlugins : EditorPlugin
|
|
{
|
|
private InspectorPlugins _plugin;
|
|
public override void _EnterTree()
|
|
{
|
|
_plugin = new InspectorPlugins();
|
|
AddInspectorPlugin(_plugin);
|
|
}
|
|
|
|
public override void _ExitTree()
|
|
{
|
|
RemoveInspectorPlugin(_plugin);
|
|
}
|
|
}
|
|
|
|
#endif
|