aboutsummaryrefslogtreecommitdiffstats
path: root/Nodes
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@blos.sm>2023-07-07 23:08:09 +0100
committerLibravatar cel 🌸 <cel@blos.sm>2023-07-07 23:08:09 +0100
commit45b2751b4e63c8d7b048b005f19f9042782e5a13 (patch)
tree41f8da13e1a8ef0e4c7f50c8fd7af0ef1addf2a1 /Nodes
parent4cb4a220710f3795aa4f4e4bfed3a27617310733 (diff)
parentf3c450b15226a74a8390275ce24f8a4c5b025117 (diff)
download2023-45b2751b4e63c8d7b048b005f19f9042782e5a13.tar.gz
2023-45b2751b4e63c8d7b048b005f19f9042782e5a13.tar.bz2
2023-45b2751b4e63c8d7b048b005f19f9042782e5a13.zip
merge branch 'drawing'
Diffstat (limited to '')
-rw-r--r--Nodes/Level_test.tscn30
-rw-r--r--Nodes/drawing.tscn19
2 files changed, 49 insertions, 0 deletions
diff --git a/Nodes/Level_test.tscn b/Nodes/Level_test.tscn
new file mode 100644
index 0000000..b3be870
--- /dev/null
+++ b/Nodes/Level_test.tscn
@@ -0,0 +1,30 @@
+[gd_scene load_steps=5 format=3 uid="uid://dt5grvd5n2ioj"]
+
+[ext_resource type="Texture2D" uid="uid://5xqahgawme4m" path="res://Assets/start.png" id="1_wenkl"]
+[ext_resource type="Texture2D" uid="uid://b8vhe5kt6037n" path="res://Assets/end.png" id="2_gp6ng"]
+[ext_resource type="Texture2D" uid="uid://dg3v488vx0oj6" path="res://Assets/checkpoint.png" id="3_cgigr"]
+[ext_resource type="PackedScene" uid="uid://covygojlfmx6x" path="res://Nodes/drawing.tscn" id="4_t4rjk"]
+
+[node name="Level_test" type="Node2D"]
+
+[node name="Start" type="Sprite2D" parent="."]
+position = Vector2(669, 515)
+texture = ExtResource("1_wenkl")
+
+[node name="End" type="Sprite2D" parent="."]
+position = Vector2(616, 86)
+texture = ExtResource("2_gp6ng")
+
+[node name="cp1" type="Sprite2D" parent="."]
+position = Vector2(270, 338)
+texture = ExtResource("3_cgigr")
+
+[node name="cp2" type="Sprite2D" parent="."]
+position = Vector2(621, 323)
+texture = ExtResource("3_cgigr")
+
+[node name="cp3" type="Sprite2D" parent="."]
+position = Vector2(404, 145)
+texture = ExtResource("3_cgigr")
+
+[node name="Drawing" parent="." instance=ExtResource("4_t4rjk")]
diff --git a/Nodes/drawing.tscn b/Nodes/drawing.tscn
new file mode 100644
index 0000000..3f65fee
--- /dev/null
+++ b/Nodes/drawing.tscn
@@ -0,0 +1,19 @@
+[gd_scene load_steps=4 format=3 uid="uid://covygojlfmx6x"]
+
+[ext_resource type="Script" path="res://Scripts/drawing.gd" id="1_03nmp"]
+[ext_resource type="Texture2D" uid="uid://bpasf8is2xnfb" path="res://icon.svg" id="2_sgpkt"]
+
+[sub_resource type="Curve2D" id="Curve2D_dtc4h"]
+
+[node name="Drawing" type="Node2D"]
+script = ExtResource("1_03nmp")
+
+[node name="TrackLine" type="Line2D" parent="."]
+
+[node name="TrackPath" type="Path2D" parent="."]
+curve = SubResource("Curve2D_dtc4h")
+
+[node name="TrackFollower" type="PathFollow2D" parent="TrackPath"]
+
+[node name="Sprite2D" type="Sprite2D" parent="TrackPath/TrackFollower"]
+texture = ExtResource("2_sgpkt")