aboutsummaryrefslogtreecommitdiffstats
path: root/Nodes/Level_test.tscn
blob: f0821983587080ffc1f60584ae0f0fb8b6b2ce26 (plain) (blame)
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
[gd_scene load_steps=11 format=3 uid="uid://dliou1u4o6bib"]

[ext_resource type="Script" path="res://Scripts/scene_control.gd" id="1_0esj3"]
[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://c1mvbh2fwqtkb" path="res://Nodes/car.tscn" id="4_xvobs"]
[ext_resource type="Script" path="res://Scripts/drawing.gd" id="5_x7h3g"]
[ext_resource type="PackedScene" uid="uid://wkfai2lvnp7n" path="res://Nodes/checkpoint.tscn" id="7_52mhf"]
[ext_resource type="PackedScene" uid="uid://c8r6i3bu37ogu" path="res://Nodes/ui.tscn" id="8_8u1ba"]

[sub_resource type="CircleShape2D" id="CircleShape2D_6g88q"]
radius = 18.0278

[sub_resource type="Curve2D" id="Curve2D_0exre"]

[node name="Level_test" type="Node2D"]
script = ExtResource("1_0esj3")

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

[node name="Start" type="TextureButton" parent="."]
offset_left = 787.0
offset_top = 514.0
offset_right = 819.0
offset_bottom = 546.0
texture_normal = ExtResource("1_wenkl")

[node name="FinishLine" type="Sprite2D" parent="."]
position = Vector2(793, 96)
texture = ExtResource("2_gp6ng")

[node name="Area2D" type="Area2D" parent="FinishLine"]

[node name="CollisionShape2D" type="CollisionShape2D" parent="FinishLine/Area2D"]
shape = SubResource("CircleShape2D_6g88q")

[node name="Car" parent="." instance=ExtResource("4_xvobs")]
max_speed = 500
acceleration = 0.05

[node name="DrawNode" type="Node2D" parent="."]
script = ExtResource("5_x7h3g")

[node name="TrackLine" type="Line2D" parent="DrawNode"]

[node name="TrackPath" type="Path2D" parent="DrawNode"]
curve = SubResource("Curve2D_0exre")

[node name="TrackFollower" type="PathFollow2D" parent="DrawNode/TrackPath"]
loop = false

[node name="Sprite2D" type="Sprite2D" parent="DrawNode/TrackPath/TrackFollower"]
visible = false
scale = Vector2(0.604, 0.604)
texture = ExtResource("3_cgigr")

[node name="31005" type="Timer" parent="DrawNode/TrackPath/TrackFollower"]
wait_time = 0.2
one_shot = true

[node name="Checkpoints" type="Node" parent="."]

[node name="Checkpoint" parent="Checkpoints" instance=ExtResource("7_52mhf")]
position = Vector2(619, 355)

[node name="Checkpoint2" parent="Checkpoints" instance=ExtResource("7_52mhf")]
position = Vector2(285, 479)

[node name="Checkpoint3" parent="Checkpoints" instance=ExtResource("7_52mhf")]
position = Vector2(517, 172)

[connection signal="mouse_entered" from="FinishLine/Area2D" to="DrawNode" method="_end_drawing"]