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="Ranks" type="Sprite" parent="."]
16 position = Vector2( 257, 293 )
17 texture = ExtResource( 4 )
19 [node name="Files" type="Sprite" parent="."]
20 position = Vector2( 523, 559 )
21 texture = ExtResource( 3 )
23 [node name="Ranks2" type="Sprite" parent="."]
24 position = Vector2( 789, 293 )
25 texture = ExtResource( 4 )
27 [node name="Files2" type="Sprite" parent="."]
28 position = Vector2( 523, 27 )
29 texture = ExtResource( 3 )
31 [node name="setup" type="Button" parent="."]
32 margin_left = 101.0
33 margin_top = 279.0
34 margin_right = 190.0
35 margin_bottom = 299.0
36 text = "Setup Board"
38 [node name="pieces" type="Node2D" parent="."]
40 [node name="Button" type="Button" parent="."]
41 margin_left = 109.0
42 margin_top = 165.0
43 margin_right = 198.0
44 margin_bottom = 185.0
45 text = "PING/PONG"
47 [node name="dropqueen" type="Button" parent="."]
48 margin_left = 103.0
49 margin_top = 106.0
50 margin_right = 188.0
51 margin_bottom = 126.0
52 text = "drop queen"
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"]