FloatMods
This commit is contained in:
parent
540c6c8f2f
commit
5d8e45469d
10 changed files with 255 additions and 0 deletions
20
addons/floatmodifiers/Plugin.cs
Normal file
20
addons/floatmodifiers/Plugin.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#if TOOLS
|
||||
using Godot;
|
||||
|
||||
[Tool]
|
||||
public partial class Plugin : EditorPlugin
|
||||
{
|
||||
private FlatModsInspector _plugin;
|
||||
|
||||
public override void _EnterTree()
|
||||
{
|
||||
_plugin = new FlatModsInspector();
|
||||
AddInspectorPlugin(_plugin);
|
||||
}
|
||||
|
||||
public override void _ExitTree()
|
||||
{
|
||||
RemoveInspectorPlugin(_plugin);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue