-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote_manager.tscn
More file actions
83 lines (63 loc) · 3 KB
/
note_manager.tscn
File metadata and controls
83 lines (63 loc) · 3 KB
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
74
75
76
77
78
79
80
81
82
83
[gd_scene load_steps=7 format=3 uid="uid://bn8txx53xlguw"]
[ext_resource type="Script" path="res://scenes/NoteManager/scripts/InputHandler.cs" id="1_2oeuf"]
[ext_resource type="Texture2D" uid="uid://hfxynr5jdgsp" path="res://scenes/NoteManager/assets/new_arrow.png" id="2_pb1qk"]
[ext_resource type="Script" path="res://scenes/NoteManager/scripts/NoteChecker.cs" id="3_0cioe"]
[ext_resource type="Texture2D" uid="uid://cgq2ar3pdmkac" path="res://scenes/NoteManager/assets/arrow_outline.png" id="4_3mttx"]
[ext_resource type="Texture2D" uid="uid://b0tvsewgnf2x7" path="res://icon.svg" id="4_foklt"]
[ext_resource type="PackedScene" uid="uid://bcf6vs4aqoxr5" path="res://scenes/ChartViewport/hit_particles.tscn" id="5_jv1tr"]
[node name="noteManager" type="Node2D"]
script = ExtResource("1_2oeuf")
[node name="noteCheckers" type="Node2D" parent="."]
[node name="arrowLeft" type="Sprite2D" parent="noteCheckers"]
position = Vector2(0, 29)
rotation = 3.14159
texture = ExtResource("2_pb1qk")
script = ExtResource("3_0cioe")
[node name="Outline" type="Sprite2D" parent="noteCheckers/arrowLeft"]
modulate = Color(0, 0, 0, 1)
texture = ExtResource("4_3mttx")
[node name="HitParticles" parent="noteCheckers/arrowLeft" instance=ExtResource("5_jv1tr")]
[node name="arrowUp" type="Sprite2D" parent="noteCheckers"]
position = Vector2(0, 68)
rotation = -1.5708
texture = ExtResource("2_pb1qk")
script = ExtResource("3_0cioe")
[node name="Outline" type="Sprite2D" parent="noteCheckers/arrowUp"]
modulate = Color(0, 0, 0, 1)
texture = ExtResource("4_3mttx")
[node name="HitParticles" parent="noteCheckers/arrowUp" instance=ExtResource("5_jv1tr")]
[node name="arrowDown" type="Sprite2D" parent="noteCheckers"]
position = Vector2(0, 112)
rotation = 1.5708
texture = ExtResource("2_pb1qk")
script = ExtResource("3_0cioe")
[node name="Outline" type="Sprite2D" parent="noteCheckers/arrowDown"]
modulate = Color(0, 0, 0, 1)
texture = ExtResource("4_3mttx")
[node name="HitParticles" parent="noteCheckers/arrowDown" instance=ExtResource("5_jv1tr")]
[node name="arrowRight" type="Sprite2D" parent="noteCheckers"]
position = Vector2(0, 151)
texture = ExtResource("2_pb1qk")
script = ExtResource("3_0cioe")
[node name="Outline" type="Sprite2D" parent="noteCheckers/arrowRight"]
modulate = Color(0, 0, 0, 1)
texture = ExtResource("4_3mttx")
[node name="HitParticles" parent="noteCheckers/arrowRight" instance=ExtResource("5_jv1tr")]
[node name="ui" type="Node2D" parent="."]
[node name="dividers" type="Node2D" parent="ui"]
visible = false
[node name="DivA" type="Sprite2D" parent="ui/dividers"]
modulate = Color(0, 0, 0, 1)
position = Vector2(295, 37)
scale = Vector2(5.10938, 0.041)
texture = ExtResource("4_foklt")
[node name="DivB" type="Sprite2D" parent="ui/dividers"]
modulate = Color(0, 0, 0, 1)
position = Vector2(295, 77)
scale = Vector2(5.10938, 0.041)
texture = ExtResource("4_foklt")
[node name="DivC" type="Sprite2D" parent="ui/dividers"]
modulate = Color(0, 0, 0, 1)
position = Vector2(295, 120)
scale = Vector2(5.10938, 0.041)
texture = ExtResource("4_foklt")