-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tscn
34 lines (26 loc) · 1.71 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
[gd_scene load_steps=5 format=3 uid="uid://dub5e33w134sc"]
[ext_resource type="Script" path="res://scripts/Map.cs" id="1_ydfkw"]
[ext_resource type="PackedScene" uid="uid://b1ljvjt2gaant" path="res://HUD.tscn" id="2_53r63"]
[ext_resource type="PackedScene" uid="uid://coi02ckuxbqce" path="res://tile.tscn" id="2_veasa"]
[sub_resource type="Gradient" id="Gradient_dsd5m"]
offsets = PackedFloat32Array(0, 0.528822, 0.927318, 1)
colors = PackedColorArray(0, 0, 0, 1, 0.333813, 0.00128009, 0.728616, 1, 0.929129, 0.893753, 0.971129, 1, 2.06962e-06, 0.727208, 0.349225, 1)
[node name="Main" type="Node"]
[node name="Camera2D" type="Camera2D" parent="."]
[node name="Map" type="Node2D" parent="."]
position = Vector2(214, 0)
script = ExtResource("1_ydfkw")
AnimationGradient = SubResource("Gradient_dsd5m")
TileScene = ExtResource("2_veasa")
[node name="Timer" type="Timer" parent="."]
[node name="Hud" parent="." instance=ExtResource("2_53r63")]
[connection signal="NoPathFound" from="Map" to="Hud" method="PlayNoPathAnimation"]
[connection signal="SetLabel" from="Map" to="Hud" method="SetLabel"]
[connection signal="SetMapSize" from="Map" to="Hud" method="SetMapSize"]
[connection signal="ChangeMapSize" from="Hud" to="Map" method="ChangeMapSizeHandler"]
[connection signal="ChangeSeed" from="Hud" to="Map" method="ChangeSeedHandler"]
[connection signal="InitExampleMap" from="Hud" to="Map" method="InitExampleMapHandler"]
[connection signal="InitRandomMap" from="Hud" to="Map" method="InitRandomMapHandler"]
[connection signal="SolveQ2" from="Hud" to="Map" method="SolveQ2Handler"]
[connection signal="SolveQ3" from="Hud" to="Map" method="SolveQ3Handler"]
[connection signal="ToggleAnimation" from="Hud" to="Map" method="ToggleAnimationHandler"]