- 更新Godot项目配置,添加自动加载脚本 - 完善.gitignore文件,排除不必要的文件 - 更新README文档,添加项目介绍和使用说明 - 更新主场景配置,集成认证系统 - 添加开发规范文档和项目结构说明
31 lines
756 B
Plaintext
31 lines
756 B
Plaintext
; 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="whaleTown"
|
|
run/main_scene="res://scenes/main_scene.tscn"
|
|
config/features=PackedStringArray("4.5", "Forward Plus")
|
|
config/icon="res://icon.svg"
|
|
|
|
[autoload]
|
|
|
|
GameManager="*res://core/managers/GameManager.gd"
|
|
SceneManager="*res://core/managers/SceneManager.gd"
|
|
EventSystem="*res://core/systems/EventSystem.gd"
|
|
|
|
[display]
|
|
|
|
window/size/viewport_width=1376
|
|
window/size/viewport_height=768
|
|
window/size/mode=2
|
|
window/stretch/mode="canvas_items"
|
|
window/stretch/aspect="expand"
|