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
This commit is contained in:
parent
f8140c83ff
commit
02b3be35b0
144 changed files with 7399 additions and 0 deletions
8
addons/log/plugin.gd
Normal file
8
addons/log/plugin.gd
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
@tool
|
||||
extends EditorPlugin
|
||||
|
||||
func _enter_tree():
|
||||
ProjectSettings.settings_changed.connect(on_settings_changed)
|
||||
|
||||
func on_settings_changed():
|
||||
Log.setup_config()
|
||||
Loading…
Add table
Add a link
Reference in a new issue