diff --git a/game/addons/.gitignore b/game/addons/.gitignore index 4d5df893..47a51e98 100644 --- a/game/addons/.gitignore +++ b/game/addons/.gitignore @@ -15,5 +15,7 @@ !mat_maker_gd/** !color-palette !color-palette/** +!world_generator +!world_generator/** !addon_versions diff --git a/game/addons/world_generator/plugin.cfg b/game/addons/world_generator/plugin.cfg new file mode 100644 index 00000000..0680fe40 --- /dev/null +++ b/game/addons/world_generator/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="WorldGenerator" +description="" +author="Relintai" +version="" +script="plugin.gd" diff --git a/game/addons/world_generator/plugin.gd b/game/addons/world_generator/plugin.gd new file mode 100644 index 00000000..49e712eb --- /dev/null +++ b/game/addons/world_generator/plugin.gd @@ -0,0 +1,10 @@ +tool +extends EditorPlugin + + +func _enter_tree(): + pass + + +func _exit_tree(): + pass diff --git a/game/project.godot b/game/project.godot index 090a9584..23790f47 100644 --- a/game/project.godot +++ b/game/project.godot @@ -328,7 +328,7 @@ window/size/ui_scale_touch=1.0 [editor_plugins] -enabled=PoolStringArray( "res://addons/Godoxel/plugin.cfg", "res://addons/color-palette/plugin.cfg", "res://addons/godot-plugin-refresher/plugin.cfg", "res://addons/mat_maker_gd/plugin.cfg", "res://addons/mesh_data_resource_editor/plugin.cfg" ) +enabled=PoolStringArray( "res://addons/Godoxel/plugin.cfg", "res://addons/color-palette/plugin.cfg", "res://addons/godot-plugin-refresher/plugin.cfg", "res://addons/mat_maker_gd/plugin.cfg", "res://addons/mesh_data_resource_editor/plugin.cfg", "res://addons/world_generator/plugin.cfg" ) [ess]