Blob


1 [gd_scene load_steps=5 format=2]
3 [ext_resource path="res://assets/board/board.png" type="Texture" id=1]
4 [ext_resource path="res://src/board.gd" type="Script" id=2]
5 [ext_resource path="res://assets/board/files.png" type="Texture" id=3]
6 [ext_resource path="res://assets/board/ranks.png" type="Texture" id=4]
8 [node name="board" type="Node2D"]
9 script = ExtResource( 2 )
11 [node name="Sprite" type="Sprite" parent="."]
12 position = Vector2( 523, 293 )
13 texture = ExtResource( 1 )
15 [node name="setup" type="Button" parent="."]
16 margin_left = 101.0
17 margin_top = 279.0
18 margin_right = 190.0
19 margin_bottom = 299.0
20 text = "Setup Board"
22 [node name="pieces" type="Node2D" parent="."]
24 [node name="Button" type="Button" parent="."]
25 margin_left = 109.0
26 margin_top = 165.0
27 margin_right = 198.0
28 margin_bottom = 185.0
29 text = "PING/PONG"
31 [node name="dropqueen" type="Button" parent="."]
32 margin_left = 103.0
33 margin_top = 106.0
34 margin_right = 188.0
35 margin_bottom = 126.0
36 text = "drop queen"
38 [node name="Ranks" type="Sprite" parent="."]
39 position = Vector2( 257, 293 )
40 texture = ExtResource( 4 )
42 [node name="Files" type="Sprite" parent="."]
43 position = Vector2( 523, 559 )
44 texture = ExtResource( 3 )
46 [node name="Files2" type="Sprite" parent="."]
47 position = Vector2( 523, 27 )
48 texture = ExtResource( 3 )
50 [node name="Ranks" type="Sprite" parent="Files2"]
51 position = Vector2( 266, 266 )
52 texture = ExtResource( 4 )
54 [connection signal="button_down" from="setup" to="." method="_on_setup_click"]
55 [connection signal="pressed" from="Button" to="." method="_fai_cose"]
56 [connection signal="pressed" from="dropqueen" to="." method="_on_dropqueen_pressed"]