r3-next/levels/soundtest.tscn

74 lines
2.1 KiB
Text
Raw Normal View History

2024-10-29 22:37:39 +01:00
[gd_scene load_steps=9 format=2]
2024-01-16 03:04:31 +01:00
2024-10-29 22:37:39 +01:00
[ext_resource path="res://levels/bottomhud.tscn" type="PackedScene" id=1]
[ext_resource path="res://fonts/button1.tres" type="DynamicFont" id=2]
[ext_resource path="res://backgounds/nebula_-_6044 (720p).ogv" type="VideoStream" id=3]
[ext_resource path="res://levels/soundtest.gd" type="Script" id=4]
[ext_resource path="res://fonts/title.tres" type="DynamicFont" id=5]
2024-01-16 03:04:31 +01:00
2024-10-29 22:37:39 +01:00
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0, 0.8, 0, 1 )
2024-01-16 03:04:31 +01:00
2024-10-29 22:37:39 +01:00
[sub_resource type="StyleBoxFlat" id=2]
bg_color = Color( 0, 0.8, 0, 1 )
2024-01-16 03:04:31 +01:00
2024-10-29 22:37:39 +01:00
[sub_resource type="StyleBoxFlat" id=3]
bg_color = Color( 0, 0.8, 0, 1 )
2024-01-16 03:04:31 +01:00
[node name="Soundtest" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
2024-10-29 22:37:39 +01:00
script = ExtResource( 4 )
2024-01-16 03:04:31 +01:00
2024-10-29 22:37:39 +01:00
[node name="nebula" type="VideoPlayer" parent="."]
margin_right = 1280.0
margin_bottom = 720.0
stream = ExtResource( 3 )
2024-01-16 03:04:31 +01:00
autoplay = true
2024-10-29 22:37:39 +01:00
loop = true
2024-01-16 03:04:31 +01:00
[node name="Game name" type="Label" parent="."]
2024-10-29 22:37:39 +01:00
margin_left = 108.0
margin_top = 146.0
margin_right = 1168.0
margin_bottom = 292.0
custom_fonts/font = ExtResource( 5 )
text = "The Red Robot Radio"
align = 1
valign = 1
[node name="Bottomhud" parent="." instance=ExtResource( 1 )]
2024-01-16 03:04:31 +01:00
[node name="VBoxContainer" type="VBoxContainer" parent="."]
2024-10-29 22:37:39 +01:00
margin_left = 420.5
margin_top = 358.0
margin_right = 940.5
margin_bottom = 720.0
2024-01-16 03:04:31 +01:00
2024-01-16 13:58:51 +01:00
[node name="Music" type="Button" parent="VBoxContainer"]
2024-10-29 22:37:39 +01:00
margin_right = 520.0
margin_bottom = 116.0
custom_fonts/font = ExtResource( 2 )
custom_styles/focus = SubResource( 1 )
2024-01-16 13:58:51 +01:00
text = "Music"
2024-01-16 03:04:31 +01:00
2024-01-16 13:58:51 +01:00
[node name="Sfx" type="Button" parent="VBoxContainer"]
2024-10-29 22:37:39 +01:00
margin_top = 120.0
margin_right = 520.0
margin_bottom = 236.0
custom_fonts/font = ExtResource( 2 )
custom_styles/focus = SubResource( 2 )
2024-01-16 13:58:51 +01:00
text = "Sound Effects"
2024-01-16 03:04:31 +01:00
[node name="Back" type="Button" parent="VBoxContainer"]
2024-10-29 22:37:39 +01:00
margin_top = 240.0
margin_right = 520.0
margin_bottom = 356.0
custom_fonts/font = ExtResource( 2 )
custom_styles/focus = SubResource( 3 )
2024-01-16 03:04:31 +01:00
text = "Back"
2024-01-16 13:58:51 +01:00
[connection signal="pressed" from="VBoxContainer/Music" to="." method="_on_music_pressed"]
[connection signal="pressed" from="VBoxContainer/Sfx" to="." method="_on_sfx_pressed"]
2024-01-16 03:04:31 +01:00
[connection signal="pressed" from="VBoxContainer/Back" to="." method="_on_back_pressed"]