godot-webrtc-mplayer-testing/multiplayer.tscn
2021-12-02 16:30:24 -06:00

59 lines
1.4 KiB
Plaintext

[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="."]
margin_left = 565.0
margin_top = 214.0
margin_right = 824.0
margin_bottom = 289.0
text = "Back"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="create_lobby" type="Button" parent="."]
margin_left = 12.0
margin_top = 11.0
margin_right = 550.0
margin_bottom = 86.0
text = "Create Lobby"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="join" type="Button" parent="."]
margin_left = 563.0
margin_top = 13.0
margin_right = 963.0
margin_bottom = 88.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
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="back" to="." method="_on_back_pressed"]
[connection signal="pressed" from="create_lobby" to="." method="_on_create_lobby_pressed"]
[connection signal="pressed" from="join" to="." method="_on_join_pressed"]
[connection signal="item_activated" from="lobbies" to="." method="_on_lobbies_item_activated"]