RhythmGame/main.tscn

90 lines
2.7 KiB
Plaintext
Raw Normal View History

[gd_scene load_steps=14 format=2]
2019-11-10 15:09:14 +10:30
[ext_resource path="res://main.gd" type="Script" id=1]
[ext_resource path="res://video.gd" type="Script" id=2]
[ext_resource path="res://Receptors.gd" type="Script" id=3]
[ext_resource path="res://NoteHandler.gd" type="Script" id=4]
[ext_resource path="res://assets/text-4k.png" type="Texture" id=5]
[ext_resource path="res://shaders/notelines.shader" type="Shader" id=6]
[ext_resource path="res://shaders/notemesh.shader" type="Shader" id=7]
[ext_resource path="res://Menu.gd" type="Script" id=8]
[ext_resource path="res://Bezel.gd" type="Script" id=9]
[ext_resource path="res://assets/NotoSans.tres" type="DynamicFont" id=10]
[ext_resource path="res://InputHandler.gd" type="Script" id=11]
2019-11-10 15:09:14 +10:30
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 6 )
2019-11-10 15:09:14 +10:30
shader_param/line_color = Plane( 0.8, 0.8, 1, 0.8 )
shader_param/line_color_double = Plane( 1, 1, 0.6, 0.9 )
shader_param/dot_color = Plane( 1, 1, 1, 0.8 )
shader_param/bps = 1.0
shader_param/line_thickness = 0.012
shader_param/line_thickness_min = 0.0
shader_param/dot_thickness = 0.033
shader_param/dot_fullbright_thickness = 0.013
shader_param/max_angle = 1.0708
[sub_resource type="ShaderMaterial" id=2]
shader = ExtResource( 7 )
2019-11-10 15:09:14 +10:30
shader_param/bps = null
shader_param/star_color = null
shader_param/held_color = null
shader_param/screen_size = null
[node name="main" type="Node2D"]
2019-11-18 13:11:02 +10:30
position = Vector2( 960, 540 )
2019-11-10 15:09:14 +10:30
script = ExtResource( 1 )
2019-11-18 13:11:02 +10:30
__meta__ = {
"_edit_horizontal_guides_": [ ],
"_edit_vertical_guides_": [ 420.85, 1500.91 ]
2019-11-18 13:11:02 +10:30
}
2019-11-10 15:09:14 +10:30
[node name="music" type="AudioStreamPlayer" parent="."]
2019-11-10 15:09:14 +10:30
[node name="video" type="VideoPlayer" parent="."]
2019-11-18 13:11:02 +10:30
margin_left = -540.0
margin_top = -540.0
margin_right = 540.0
margin_bottom = 540.0
2019-11-10 15:09:14 +10:30
grow_horizontal = 2
grow_vertical = 2
rect_pivot_offset = Vector2( 540, 540 )
mouse_filter = 2
volume_db = -80.0
script = ExtResource( 2 )
2019-11-10 15:09:14 +10:30
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Receptors" type="Node2D" parent="."]
script = ExtResource( 3 )
2019-11-10 15:09:14 +10:30
[node name="NoteHandler" type="Node2D" parent="."]
script = ExtResource( 4 )
2019-11-10 15:09:14 +10:30
[node name="SlideTrailHandler" type="Node2D" parent="NoteHandler"]
[node name="JudgeText" type="MeshInstance2D" parent="NoteHandler"]
texture = ExtResource( 5 )
2019-11-10 15:09:14 +10:30
[node name="notelines" type="MeshInstance2D" parent="NoteHandler"]
material = SubResource( 1 )
[node name="meshinstance" type="MeshInstance2D" parent="NoteHandler"]
material = SubResource( 2 )
[node name="Menu" type="Node2D" parent="."]
script = ExtResource( 8 )
2019-11-10 15:09:14 +10:30
[node name="Bezel" type="Node2D" parent="."]
script = ExtResource( 9 )
2019-11-10 15:09:14 +10:30
[node name="InputHandler" type="Label" parent="."]
2019-11-18 13:11:02 +10:30
margin_left = -960.0
margin_top = -540.0
margin_right = 960.0
margin_bottom = 540.0
custom_fonts/font = ExtResource( 10 )
2019-11-10 15:09:14 +10:30
text = "Fingers on the screen:"
script = ExtResource( 11 )