godot-webrtc-mplayer-testing/multiplayer.tscn

58 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-11-17 08:18:12 -06:00
[gd_scene load_steps=2 format=2]
[ext_resource path="res://multiplayer.gd" type="Script" id=1]
[node name="Control" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="back" type="Button" parent="."]
2021-11-17 13:57:45 -06:00
margin_left = 565.0
margin_top = 214.0
margin_right = 824.0
margin_bottom = 289.0
2021-11-17 08:18:12 -06:00
text = "Back"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="create_lobby" type="Button" parent="."]
2021-11-17 13:57:45 -06:00
margin_left = 12.0
margin_top = 11.0
margin_right = 550.0
margin_bottom = 86.0
2021-11-17 08:18:12 -06:00
text = "Create Lobby"
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-17 13:57:45 -06:00
[node name="join" type="Button" parent="."]
margin_left = 10.0
margin_top = 414.0
margin_right = 548.0
margin_bottom = 489.0
text = "Join"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="lobbies" type="ItemList" parent="."]
anchor_right = 0.121
anchor_bottom = 0.217
margin_left = 18.0
margin_top = 105.0
margin_right = 416.096
margin_bottom = 267.8
same_column_width = true
2021-11-17 08:18:12 -06:00
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="back" to="." method="_on_back_pressed"]
2021-11-17 13:57:45 -06:00
[connection signal="pressed" from="create_lobby" to="." method="_on_create_lobby_pressed"]
[connection signal="pressed" from="join" to="." method="_on_join_pressed"]