- 重构了 VirtualBoard 类,优化了棋盘操作和事件处理 - 重写了 ChessPiece 类,增加了事件处理和虚拟棋子逻辑 - 更新了 ChessGame 控制器,增加了结束回合功能和对话框 - 调整了场景布局和资源引用 - 清理了冗余代码和注释
37 lines
760 B
Plaintext
37 lines
760 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="Chinese_Chess"
|
|
run/main_scene="res://Main.tscn"
|
|
config/features=PackedStringArray("4.3", "C#", "Mobile")
|
|
config/icon="res://Asserts/icon.svg"
|
|
|
|
[autoload]
|
|
|
|
Global="*res://Scripts/Global.cs"
|
|
|
|
[display]
|
|
|
|
window/size/viewport_width=720
|
|
window/size/viewport_height=1280
|
|
window/stretch/mode="viewport"
|
|
window/handheld/orientation=1
|
|
|
|
[dotnet]
|
|
|
|
project/assembly_name="Chinese_Chess"
|
|
|
|
[rendering]
|
|
|
|
renderer/rendering_method="mobile"
|
|
textures/vram_compression/import_etc2_astc=true
|