-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.tscn
103 lines (84 loc) · 3.29 KB
/
Main.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[gd_scene load_steps=16 format=2]
[ext_resource path="res://GameBoard/Cursor/Cursor.tscn" type="PackedScene" id=1]
[ext_resource path="res://Units/Unit.tscn" type="PackedScene" id=2]
[ext_resource path="res://GameBoard/GameBoard.gd" type="Script" id=3]
[ext_resource path="res://GameBoard/Grid.tres" type="Resource" id=4]
[ext_resource path="res://UnitOverlay/UnitOverlay.tscn" type="PackedScene" id=5]
[ext_resource path="res://GameBoard/UnitPath.tscn" type="PackedScene" id=6]
[ext_resource path="res://Units/IMG_0141.PNG" type="Texture" id=7]
[ext_resource path="res://Units/Image_20220806_105828.png" type="Texture" id=8]
[ext_resource path="res://Units/Image_20220806_110023.png" type="Texture" id=9]
[ext_resource path="res://Background/Map.tscn" type="PackedScene" id=10]
[ext_resource path="res://Units/Image_20220806_114429.png" type="Texture" id=11]
[ext_resource path="res://Units/Enemy.tscn" type="PackedScene" id=12]
[sub_resource type="Curve2D" id=1]
resource_local_to_scene = true
_data = {
"points": PoolVector2Array( )
}
[sub_resource type="Curve2D" id=2]
resource_local_to_scene = true
_data = {
"points": PoolVector2Array( )
}
[sub_resource type="Curve2D" id=3]
resource_local_to_scene = true
_data = {
"points": PoolVector2Array( )
}
[node name="Main" type="Node2D"]
[node name="Map" parent="." instance=ExtResource( 10 )]
[node name="GameBoard" type="YSort" parent="."]
script = ExtResource( 3 )
grid = ExtResource( 4 )
[node name="UnitOverlay" parent="GameBoard" instance=ExtResource( 5 )]
[node name="UnitPath" parent="GameBoard" instance=ExtResource( 6 )]
tile_data = PoolIntArray( )
[node name="Cursor" parent="GameBoard" instance=ExtResource( 1 )]
[node name="Bear" parent="GameBoard" instance=ExtResource( 2 )]
position = Vector2( 400, 640 )
curve = SubResource( 1 )
skin = ExtResource( 8 )
move_range = 3
skin_offset = Vector2( 2, 9 )
[node name="Cat" parent="GameBoard" instance=ExtResource( 2 )]
position = Vector2( 800, 640 )
curve = SubResource( 2 )
skin = ExtResource( 9 )
move_range = 8
skin_offset = Vector2( 5, 12 )
[node name="Enemy2" parent="GameBoard" instance=ExtResource( 12 )]
position = Vector2( 1040, 480 )
grid = ExtResource( 4 )
skin = ExtResource( 11 )
move_range = -2
[node name="Enemy1" parent="GameBoard" instance=ExtResource( 12 )]
position = Vector2( 0, 240 )
grid = ExtResource( 4 )
skin = ExtResource( 11 )
move_range = 2
[node name="Squirrel" parent="GameBoard" instance=ExtResource( 2 )]
position = Vector2( 240, 640 )
curve = SubResource( 3 )
skin = ExtResource( 7 )
move_range = 5
skin_offset = Vector2( 6, 17 )
[node name="EndTurn" type="Button" parent="GameBoard"]
margin_left = 12.0
margin_top = 18.0
margin_right = 188.0
margin_bottom = 65.0
text = "End Turn"
[node name="Enemy3" parent="GameBoard" instance=ExtResource( 12 )]
position = Vector2( 0, 320 )
grid = ExtResource( 4 )
skin = ExtResource( 11 )
move_range = 4
[node name="Enemy4" parent="GameBoard" instance=ExtResource( 12 )]
position = Vector2( 1120, 560 )
grid = ExtResource( 4 )
skin = ExtResource( 11 )
move_range = -4
[connection signal="accept_pressed" from="GameBoard/Cursor" to="GameBoard" method="_on_Cursor_accept_pressed"]
[connection signal="moved" from="GameBoard/Cursor" to="GameBoard" method="_on_Cursor_moved"]
[connection signal="pressed" from="GameBoard/EndTurn" to="GameBoard" method="_on_EndTurn_pressed"]