online multiplayer chess game (note server currently down)
Diffstat (limited to 'project.godot')
| -rw-r--r-- | project.godot | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/project.godot b/project.godot index 74e6847..1fe7c99 100644 --- a/project.godot +++ b/project.godot @@ -9,7 +9,7 @@ config_version=4 _global_script_classes=[ { -"base": "Control", +"base": "TextureButton", "class": "BarTextureButton", "language": "GDScript", "path": "res://ui/barbutton/BarTextureButton.gd" @@ -34,11 +34,26 @@ _global_script_classes=[ { "language": "GDScript", "path": "res://ui/colorpicker/ColorSelect.gd" }, { +"base": "Control", +"class": "Confirm", +"language": "GDScript", +"path": "res://ui/confirmbar.gd" +}, { +"base": "BarTextureButton", +"class": "DrawButton", +"language": "GDScript", +"path": "res://ui/barbutton/drawbutton.gd" +}, { "base": "LineEdit", "class": "FENLabel", "language": "GDScript", "path": "res://ui/FENlabel.gd" }, { +"base": "BarTextureButton", +"class": "FlipButton", +"language": "GDScript", +"path": "res://ui/barbutton/flipbutton.gd" +}, { "base": "Node2D", "class": "Grid", "language": "GDScript", @@ -99,6 +114,11 @@ _global_script_classes=[ { "language": "GDScript", "path": "res://pieces/Queen.gd" }, { +"base": "BarTextureButton", +"class": "ResignButton", +"language": "GDScript", +"path": "res://ui/barbutton/resignbutton.gd" +}, { "base": "Piece", "class": "Rook", "language": "GDScript", @@ -108,6 +128,11 @@ _global_script_classes=[ { "class": "SaveLoader", "language": "GDScript", "path": "res://saveload.gd" +}, { +"base": "Label", +"class": "StatusLabel", +"language": "GDScript", +"path": "res://ui/Status.gd" } ] _global_script_class_icons={ "BarTextureButton": "", @@ -115,7 +140,10 @@ _global_script_class_icons={ "ColorPickerBetter": "", "ColorPickerButtonBetter": "", "ColorSelect": "", +"Confirm": "", +"DrawButton": "res://assets/ui/draw.png", "FENLabel": "", +"FlipButton": "res://assets/ui/flip_board.png", "Grid": "", "HueSlider": "", "King": "res://assets/pieces/california/wK.png", @@ -128,8 +156,10 @@ _global_script_class_icons={ "Piece": "res://assets/pieces/california/wP.png", "Preview": "", "Queen": "res://assets/pieces/california/wQ.png", +"ResignButton": "res://assets/ui/flag.png", "Rook": "res://assets/pieces/california/wR.png", -"SaveLoader": "" +"SaveLoader": "", +"StatusLabel": "" } [application] @@ -153,6 +183,7 @@ SoundFx="*res://sounds/SoundFX.tscn" SaveLoad="*res://saveload.gd" ColorBack="*res://ui/background/ColorfullBackground.tscn" PacketHandler="*res://networking/PacketHandler.gd" +Debug="*res://Debug.gd" [debug] @@ -166,6 +197,10 @@ window/size/height=800 window/stretch/mode="2d" window/stretch/aspect="keep" +[editor] + +main_run_args="debug" + [editor_plugins] enabled=PoolStringArray( ) |