godot-webrtc-mplayer-testing/screens/main_menu.tscn

118 lines
3.1 KiB
Plaintext
Raw Normal View History

2021-12-15 16:14:36 -06:00
[gd_scene load_steps=6 format=2]
2021-11-15 15:02:55 -06:00
2021-12-07 16:43:37 -06:00
[ext_resource path="res://assets/fonts/iosevkalyte/iosevkalyte-regular.ttf" type="DynamicFontData" id=1]
2021-12-09 21:10:17 -06:00
[ext_resource path="res://assets/img/cross.png" type="Texture" id=2]
2021-12-07 16:43:37 -06:00
[ext_resource path="res://scripts/screens/main_menu.gd" type="Script" id=3]
2021-12-15 16:14:36 -06:00
[ext_resource path="res://assets/theme.tres" type="Theme" id=4]
2021-11-15 15:02:55 -06:00
2021-12-06 21:56:37 -06:00
[sub_resource type="DynamicFont" id=1]
size = 70
2021-12-07 16:43:37 -06:00
font_data = ExtResource( 1 )
2021-11-15 15:02:55 -06:00
2021-12-15 16:14:36 -06:00
[node name="main_menu" type="MarginContainer"]
2021-11-15 15:02:55 -06:00
anchor_right = 1.0
anchor_bottom = 1.0
2021-12-06 21:56:37 -06:00
margin_left = 20.0
margin_top = 20.0
margin_right = -20.0
margin_bottom = -20.0
2021-12-15 16:14:36 -06:00
theme = ExtResource( 4 )
2021-12-07 16:43:37 -06:00
script = ExtResource( 3 )
2021-11-15 15:02:55 -06:00
__meta__ = {
2021-12-06 21:56:37 -06:00
"_edit_use_anchors_": false
2021-11-15 15:02:55 -06:00
}
2021-12-09 21:10:17 -06:00
[node name="v" type="VBoxContainer" parent="."]
2021-12-17 17:10:56 -06:00
margin_right = 1240.0
margin_bottom = 680.0
2021-12-06 21:56:37 -06:00
2021-12-09 21:10:17 -06:00
[node name="h" type="HBoxContainer" parent="v"]
2021-12-17 17:10:56 -06:00
margin_right = 1240.0
2021-12-06 21:56:37 -06:00
margin_bottom = 50.0
alignment = 1
2021-12-09 21:10:17 -06:00
[node name="quit" type="Button" parent="v/h"]
2021-12-17 17:10:56 -06:00
margin_right = 410.0
2021-12-06 21:56:37 -06:00
margin_bottom = 50.0
rect_min_size = Vector2( 150, 50 )
2021-12-07 09:32:20 -06:00
hint_tooltip = "Yeah, let's get out of here."
2021-12-06 21:56:37 -06:00
size_flags_horizontal = 3
size_flags_vertical = 3
text = "Quit"
2021-12-09 21:10:17 -06:00
icon = ExtResource( 2 )
expand_icon = true
2021-11-15 15:43:33 -06:00
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-15 15:02:55 -06:00
2021-12-09 21:10:17 -06:00
[node name="multiplayer" type="Button" parent="v/h"]
2021-12-17 17:10:56 -06:00
margin_left = 414.0
margin_right = 825.0
2021-12-06 21:56:37 -06:00
margin_bottom = 50.0
rect_min_size = Vector2( 150, 50 )
2021-12-07 09:32:20 -06:00
hint_tooltip = "This is what you came for!"
2021-12-06 21:56:37 -06:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-17 08:18:12 -06:00
text = "Multiplayer"
2021-11-15 15:02:55 -06:00
2021-12-09 21:10:17 -06:00
[node name="singleplayer" type="Button" parent="v/h"]
2021-12-17 17:10:56 -06:00
margin_left = 829.0
margin_right = 1240.0
2021-12-06 21:56:37 -06:00
margin_bottom = 50.0
rect_min_size = Vector2( 150, 50 )
2021-12-07 09:32:20 -06:00
hint_tooltip = "This is a multiplayer tech demo, you dunce.
And no, you may not ask why the button is here."
2021-12-06 21:56:37 -06:00
size_flags_horizontal = 3
size_flags_vertical = 3
text = "Singleplayer"
2021-11-15 15:43:33 -06:00
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-15 15:02:55 -06:00
2021-12-09 21:10:17 -06:00
[node name="c" type="CenterContainer" parent="v"]
2021-12-06 21:56:37 -06:00
margin_top = 54.0
2021-12-17 17:10:56 -06:00
margin_right = 1240.0
margin_bottom = 680.0
2021-12-06 21:56:37 -06:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-12-09 21:10:17 -06:00
[node name="v" type="VBoxContainer" parent="v/c"]
2021-12-17 17:10:56 -06:00
margin_left = 252.0
margin_top = 210.0
margin_right = 987.0
margin_bottom = 416.0
2021-12-06 21:56:37 -06:00
2021-12-09 21:10:17 -06:00
[node name="title" type="Label" parent="v/c/v"]
2021-12-07 09:32:20 -06:00
margin_right = 735.0
margin_bottom = 181.0
2021-12-06 21:56:37 -06:00
custom_fonts/font = SubResource( 1 )
2021-12-07 09:32:20 -06:00
text = "Godot HTML5 WebRTC
Multiplayer Tech Demo"
align = 1
valign = 1
2021-12-06 21:56:37 -06:00
2021-12-09 21:10:17 -06:00
[node name="h" type="HBoxContainer" parent="v/c/v"]
2021-12-07 09:32:20 -06:00
margin_top = 185.0
margin_right = 735.0
2021-12-15 16:14:36 -06:00
margin_bottom = 206.0
2021-12-06 21:56:37 -06:00
alignment = 1
2021-12-09 21:10:17 -06:00
[node name="made_by" type="Label" parent="v/c/v/h"]
2021-12-15 16:14:36 -06:00
margin_left = 305.0
margin_right = 369.0
margin_bottom = 21.0
2021-12-07 09:32:20 -06:00
text = "made by "
2021-12-06 21:56:37 -06:00
2021-12-09 21:10:17 -06:00
[node name="link" type="LinkButton" parent="v/c/v/h"]
2021-12-15 16:14:36 -06:00
margin_left = 373.0
margin_right = 429.0
margin_bottom = 21.0
2021-12-07 09:32:20 -06:00
hint_tooltip = "Open https://lyte.dev"
text = "lytedev"
2021-11-15 15:02:55 -06:00
2021-12-09 21:10:17 -06:00
[connection signal="pressed" from="v/h/quit" to="." method="_on_JoinLobbyButton_pressed"]
[connection signal="pressed" from="v/h/multiplayer" to="." method="_on_multiplayer_pressed"]
[connection signal="pressed" from="v/h/singleplayer" to="." method="_on_Singleplayer_pressed"]
[connection signal="pressed" from="v/c/v/h/link" to="." method="_on_LinkButton_pressed"]