-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.tscn
63 lines (43 loc) · 1.48 KB
/
Game.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Game.gd" type="Script" id=1]
[ext_resource path="res://Board.tscn" type="PackedScene" id=2]
[ext_resource path="res://Piece.tscn" type="PackedScene" id=3]
[node name="Game" type="Node" index="0"]
script = ExtResource( 1 )
[node name="Board" parent="." index="0" instance=ExtResource( 2 )]
position = Vector2( 304, 100 )
[node name="BlackPiece" parent="." index="1" instance=ExtResource( 3 )]
margin_left = 200.0
margin_top = 128.0
margin_right = 264.0
margin_bottom = 192.0
_sections_unfolded = [ "Material", "Visibility" ]
[node name="BlackPiece2" parent="." index="2" instance=ExtResource( 3 )]
margin_left = 200.0
margin_top = 256.0
margin_right = 264.0
margin_bottom = 320.0
[node name="BlackPiece3" parent="." index="3" instance=ExtResource( 3 )]
margin_left = 200.0
margin_top = 384.0
margin_right = 264.0
margin_bottom = 448.0
[node name="WhitePiece" parent="." index="4" instance=ExtResource( 3 )]
margin_left = 730.0
margin_top = 128.0
margin_right = 794.0
margin_bottom = 192.0
color = "white"
[node name="WhitePiece2" parent="." index="5" instance=ExtResource( 3 )]
margin_left = 730.0
margin_top = 256.0
margin_right = 794.0
margin_bottom = 320.0
color = "white"
[node name="WhitePiece3" parent="." index="6" instance=ExtResource( 3 )]
margin_left = 730.0
margin_top = 384.0
margin_right = 794.0
margin_bottom = 448.0
color = "white"
[connection signal="player_moved" from="Board" to="." method="_on_Board_player_moved"]