- 添加登录场景(login_scene.tscn)和主菜单场景(main_menu_scene.tscn) - 实现认证管理器(AuthManager)用于用户登录和会话管理 - 添加核心服务:加密服务、存储服务、网络服务 - 配置项目主场景为登录场景 - 添加自动加载服务到项目配置 - 添加开发环境配置(VSCode、Claude) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
24 lines
681 B
Plaintext
24 lines
681 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/login_scene.tscn"
|
|
config/features=PackedStringArray("4.5", "Forward Plus")
|
|
config/icon="res://icon.svg"
|
|
|
|
[autoload]
|
|
|
|
EncryptionService="*res://scripts/managers/EncryptionService.gd"
|
|
StorageService="*res://scripts/managers/StorageService.gd"
|
|
NetworkService="*res://scripts/managers/NetworkService.gd"
|
|
AuthManager="*res://scripts/managers/AuthManager.gd"
|