RhythmGame/main.tscn

75 lines
2.4 KiB
Plaintext
Raw Normal View History

[gd_scene load_steps=13 format=2]
2019-11-10 15:09:14 +10:30
[ext_resource path="res://main.gd" type="Script" id=1]
[ext_resource path="res://songs/cirno_1080p_rt_cpu1_3M.webm" type="VideoStream" id=2]
[ext_resource path="res://video.gd" type="Script" id=3]
[ext_resource path="res://Receptors.gd" type="Script" id=4]
[ext_resource path="res://NoteHandler.gd" type="Script" 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://Bezel.gd" type="Script" id=8]
[ext_resource path="res://assets/NotoSans.tres" type="DynamicFont" id=9]
[ext_resource path="res://InputHandler.gd" type="Script" id=10]
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"]
script = ExtResource( 1 )
[node name="video" type="VideoPlayer" parent="."]
margin_left = 420.0
margin_right = 1500.0
margin_bottom = 1080.0
grow_horizontal = 2
grow_vertical = 2
rect_pivot_offset = Vector2( 540, 540 )
mouse_filter = 2
stream = ExtResource( 2 )
volume_db = -11.6
script = ExtResource( 3 )
2019-11-10 15:09:14 +10:30
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Receptors" type="Node2D" parent="."]
script = ExtResource( 4 )
2019-11-10 15:09:14 +10:30
[node name="NoteHandler" type="Node2D" parent="."]
script = ExtResource( 5 )
2019-11-10 15:09:14 +10:30
[node name="SlideTrailHandler" type="Node2D" parent="NoteHandler"]
position = Vector2( 960, 540 )
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="Bezel" type="Node2D" parent="."]
script = ExtResource( 8 )
2019-11-10 15:09:14 +10:30
[node name="InputHandler" type="Label" parent="."]
2019-11-10 15:09:14 +10:30
margin_right = 424.0
margin_bottom = 216.0
custom_fonts/font = ExtResource( 9 )
2019-11-10 15:09:14 +10:30
text = "Fingers on the screen:"
script = ExtResource( 10 )