numeric mods
This commit is contained in:
parent
eaa487f16a
commit
5246d8481d
11 changed files with 185 additions and 0 deletions
13
addons/numeric-modifiers/plugin.gd
Normal file
13
addons/numeric-modifiers/plugin.gd
Normal file
|
@ -0,0 +1,13 @@
|
|||
@tool
|
||||
extends EditorPlugin
|
||||
|
||||
class_name NumericModifiersPlugin
|
||||
|
||||
var inspector : NumericModsInspector
|
||||
|
||||
func _enter_tree() -> void:
|
||||
inspector = NumericModsInspector.new()
|
||||
add_inspector_plugin(inspector)
|
||||
|
||||
func _exit_tree() -> void:
|
||||
remove_inspector_plugin(inspector)
|
Loading…
Add table
Add a link
Reference in a new issue