Add console open/close functionality to pause menu; update console path in project settings

This commit is contained in:
2025-05-03 16:08:16 +02:00
parent b36df13982
commit aa2bd7b3b0
8 changed files with 535 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
@tool
extends EditorPlugin
func _enter_tree():
print("Console plugin activated.")
add_autoload_singleton("Console", "res://addons/console/console.gd")
func _exit_tree():
remove_autoload_singleton("Console")