r3-next/levels/tmenu.tscn
2024-10-29 14:37:39 -07:00

73 lines
2.1 KiB
Text

[gd_scene load_steps=9 format=2]
[ext_resource path="res://backgounds/nebula_-_6044 (720p).ogv" type="VideoStream" id=1]
[ext_resource path="res://levels/bottomhud.tscn" type="PackedScene" id=2]
[ext_resource path="res://fonts/button1.tres" type="DynamicFont" id=3]
[ext_resource path="res://levels/tmenu.gd" type="Script" id=4]
[ext_resource path="res://fonts/title.tres" type="DynamicFont" id=5]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0, 0.8, 0, 1 )
[sub_resource type="StyleBoxFlat" id=2]
bg_color = Color( 0, 0.8, 0, 1 )
[sub_resource type="StyleBoxFlat" id=3]
bg_color = Color( 0, 0.8, 0, 1 )
[node name="Tmenu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 4 )
[node name="nebula" type="VideoPlayer" parent="."]
margin_right = 1280.0
margin_bottom = 720.0
stream = ExtResource( 1 )
autoplay = true
loop = true
[node name="Game name" type="Label" parent="."]
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( 2 )]
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_left = 510.5
margin_top = 358.0
margin_right = 769.5
margin_bottom = 720.0
[node name="Start" type="Button" parent="VBoxContainer"]
margin_right = 259.0
margin_bottom = 116.0
custom_fonts/font = ExtResource( 3 )
custom_styles/focus = SubResource( 1 )
text = "Start"
[node name="Debug" type="Button" parent="VBoxContainer"]
margin_top = 120.0
margin_right = 259.0
margin_bottom = 236.0
custom_fonts/font = ExtResource( 3 )
custom_styles/focus = SubResource( 2 )
text = "Debug"
[node name="Exit" type="Button" parent="VBoxContainer"]
margin_top = 240.0
margin_right = 259.0
margin_bottom = 356.0
custom_fonts/font = ExtResource( 3 )
custom_styles/focus = SubResource( 3 )
text = "Exit"
[connection signal="pressed" from="VBoxContainer/Start" to="." method="_on_start_pressed"]
[connection signal="pressed" from="VBoxContainer/Debug" to="." method="_on_debug_pressed"]
[connection signal="pressed" from="VBoxContainer/Exit" to="." method="_on_exit_pressed"]