1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
[gd_scene load_steps=4 format=3 uid="uid://dmvyw3206dmuq"] [ext_resource type="Script" path="res://Grid.gd" id="1"] [ext_resource type="Script" path="res://SwipeHandler.gd" id="2"] [ext_resource type="PackedScene" path="res://UI.tscn" 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"]