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
32
project.godot
Normal file
32
project.godot
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
; Engine configuration file.
|
||||
; It's best edited using the editor UI and not directly,
|
||||
; since the parameters that go here are not all obvious.
|
||||
;
|
||||
; Format:
|
||||
; [section] ; section goes between []
|
||||
; param=value ; assign values to parameters
|
||||
|
||||
config_version=5
|
||||
|
||||
[application]
|
||||
|
||||
config/name="Randomgeon"
|
||||
run/main_scene="uid://fqdbtka7hqn"
|
||||
config/features=PackedStringArray("4.4", "Forward Plus")
|
||||
|
||||
[autoload]
|
||||
|
||||
CoordUtil="*res://utility/CoordUtility.gd"
|
||||
|
||||
[display]
|
||||
|
||||
window/size/viewport_width=800
|
||||
window/size/viewport_height=600
|
||||
window/size/resizable=false
|
||||
window/stretch/mode="viewport"
|
||||
window/stretch/scale=2.0
|
||||
window/stretch/scale_mode="integer"
|
||||
|
||||
[editor_plugins]
|
||||
|
||||
enabled=PackedStringArray("res://addons/log/plugin.cfg")
|
||||
Loading…
Add table
Add a link
Reference in a new issue