randomgeon/addons/log/plugin.gd
Dan Baker 02b3be35b0 Sets up initial project structure
Initializes the project with core files including:

- Editor configuration (.editorconfig, .gitattributes, .gitignore, .vscode/settings.json)
- Log.gd addon for enhanced debugging
- Loggie addon for advanced logging
- Project assets folder
2025-04-29 17:35:39 +01:00

8 lines
160 B
GDScript

@tool
extends EditorPlugin
func _enter_tree():
ProjectSettings.settings_changed.connect(on_settings_changed)
func on_settings_changed():
Log.setup_config()