1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[gd_scene load_steps=4 format=2]

[ext_resource path="res://Grid.gd" type="Script" id=1]
[ext_resource path="res://SwipeHandler.gd" type="Script" id=2]
[ext_resource path="res://UI.tscn" type="PackedScene" id=3]

[node name="World" type="Node2D"]

[node name="Grid" type="Node2D" parent="."]
script = ExtResource( 1 )

[node name="SwipeHandler" type="Node2D" parent="."]
script = ExtResource( 2 )
swipe_limit = 15.0

[node name="UI" parent="." instance=ExtResource( 3 )]

[connection signal="swiped" from="SwipeHandler" to="Grid" method="_on_SwipeHandler_swiped"]