mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
115 lines
3.3 KiB
Plaintext
115 lines
3.3 KiB
Plaintext
|
[gd_scene load_steps=3 format=2]
|
||
|
|
||
|
[ext_resource path="res://script/main.gd" type="Script" id=1]
|
||
|
[ext_resource path="res://scene/game.tscn" type="PackedScene" id=2]
|
||
|
|
||
|
[node name="Main" type="Control"]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
script = ExtResource( 1 )
|
||
|
__meta__ = {
|
||
|
"_edit_use_anchors_": false
|
||
|
}
|
||
|
|
||
|
[node name="Panel" type="Panel" parent="."]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
|
||
|
[node name="VBoxContainer" type="VBoxContainer" parent="Panel"]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
margin_left = 20.0
|
||
|
margin_top = 20.0
|
||
|
margin_right = -20.0
|
||
|
margin_bottom = -20.0
|
||
|
|
||
|
[node name="HBoxContainer" type="HBoxContainer" parent="Panel/VBoxContainer"]
|
||
|
margin_right = 984.0
|
||
|
margin_bottom = 24.0
|
||
|
|
||
|
[node name="Label" type="Label" parent="Panel/VBoxContainer/HBoxContainer"]
|
||
|
margin_top = 5.0
|
||
|
margin_right = 326.0
|
||
|
margin_bottom = 19.0
|
||
|
size_flags_horizontal = 3
|
||
|
text = "Name"
|
||
|
|
||
|
[node name="NameEdit" type="LineEdit" parent="Panel/VBoxContainer/HBoxContainer"]
|
||
|
margin_left = 330.0
|
||
|
margin_right = 984.0
|
||
|
margin_bottom = 24.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_stretch_ratio = 2.0
|
||
|
text = "A Godot User"
|
||
|
|
||
|
[node name="HBoxContainer2" type="HBoxContainer" parent="Panel/VBoxContainer"]
|
||
|
margin_top = 28.0
|
||
|
margin_right = 984.0
|
||
|
margin_bottom = 52.0
|
||
|
|
||
|
[node name="HBoxContainer" type="HBoxContainer" parent="Panel/VBoxContainer/HBoxContainer2"]
|
||
|
margin_right = 326.0
|
||
|
margin_bottom = 24.0
|
||
|
size_flags_horizontal = 3
|
||
|
|
||
|
[node name="Host" type="Button" parent="Panel/VBoxContainer/HBoxContainer2/HBoxContainer"]
|
||
|
margin_right = 42.0
|
||
|
margin_bottom = 24.0
|
||
|
text = "Host"
|
||
|
|
||
|
[node name="Control" type="Control" parent="Panel/VBoxContainer/HBoxContainer2/HBoxContainer"]
|
||
|
margin_left = 46.0
|
||
|
margin_right = 241.0
|
||
|
margin_bottom = 24.0
|
||
|
size_flags_horizontal = 3
|
||
|
|
||
|
[node name="Connect" type="Button" parent="Panel/VBoxContainer/HBoxContainer2/HBoxContainer"]
|
||
|
margin_left = 245.0
|
||
|
margin_right = 326.0
|
||
|
margin_bottom = 24.0
|
||
|
text = "Connect to"
|
||
|
|
||
|
[node name="Disconnect" type="Button" parent="Panel/VBoxContainer/HBoxContainer2/HBoxContainer"]
|
||
|
visible = false
|
||
|
margin_left = 68.0
|
||
|
margin_right = 152.0
|
||
|
margin_bottom = 24.0
|
||
|
text = "Disconnect"
|
||
|
|
||
|
[node name="Hostname" type="LineEdit" parent="Panel/VBoxContainer/HBoxContainer2"]
|
||
|
margin_left = 330.0
|
||
|
margin_right = 984.0
|
||
|
margin_bottom = 24.0
|
||
|
size_flags_horizontal = 3
|
||
|
size_flags_stretch_ratio = 2.0
|
||
|
text = "localhost"
|
||
|
placeholder_text = "localhost"
|
||
|
|
||
|
[node name="Control" type="Control" parent="Panel/VBoxContainer"]
|
||
|
margin_top = 56.0
|
||
|
margin_right = 984.0
|
||
|
margin_bottom = 76.0
|
||
|
rect_min_size = Vector2( 0, 20 )
|
||
|
|
||
|
[node name="Game" parent="Panel/VBoxContainer" instance=ExtResource( 2 )]
|
||
|
anchor_right = 0.0
|
||
|
anchor_bottom = 0.0
|
||
|
margin_top = 80.0
|
||
|
margin_right = 984.0
|
||
|
margin_bottom = 560.0
|
||
|
|
||
|
[node name="AcceptDialog" type="AcceptDialog" parent="."]
|
||
|
anchor_left = 0.5
|
||
|
anchor_top = 0.5
|
||
|
anchor_right = 0.5
|
||
|
anchor_bottom = 0.5
|
||
|
margin_left = -200.0
|
||
|
margin_top = -100.0
|
||
|
margin_right = 200.0
|
||
|
margin_bottom = 100.0
|
||
|
dialog_text = "Connection closed"
|
||
|
|
||
|
[connection signal="pressed" from="Panel/VBoxContainer/HBoxContainer2/HBoxContainer/Host" to="." method="_on_Host_pressed"]
|
||
|
[connection signal="pressed" from="Panel/VBoxContainer/HBoxContainer2/HBoxContainer/Connect" to="." method="_on_Connect_pressed"]
|
||
|
[connection signal="pressed" from="Panel/VBoxContainer/HBoxContainer2/HBoxContainer/Disconnect" to="." method="_on_Disconnect_pressed"]
|