some shake

This commit is contained in:
2026-01-20 15:27:59 +01:00
parent 8d1e7ebb4f
commit c1ca0bf27b
143 changed files with 5704 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
@tool
extends EditorPlugin
var SHAKER_INSPECTOR_PLUGIN:EditorInspectorPlugin = preload("res://addons/shaker/src/shaker_inspector.gd").new()
func _enter_tree() -> void:
# Initialization of the plugin goes here.
add_inspector_plugin(SHAKER_INSPECTOR_PLUGIN)
add_autoload_singleton("Shaker", "res://addons/shaker/src/Shaker.gd")
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
remove_inspector_plugin(SHAKER_INSPECTOR_PLUGIN)
remove_autoload_singleton("Shaker")