-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmultiplayer.tscn
More file actions
48 lines (41 loc) · 1.17 KB
/
multiplayer.tscn
File metadata and controls
48 lines (41 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[gd_scene load_steps=2 format=3 uid="uid://b7v1k52mrdrxc"]
[ext_resource type="Script" path="res://MultiplayerController.gd" id="1_bc0we"]
[node name="Control" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_bc0we")
[node name="Host" type="Button" parent="."]
layout_mode = 0
offset_left = 153.0
offset_top = 101.0
offset_right = 197.0
offset_bottom = 132.0
text = "Host"
[node name="Join" type="Button" parent="."]
layout_mode = 0
offset_left = 204.0
offset_top = 101.0
offset_right = 242.0
offset_bottom = 132.0
text = "Join"
[node name="Start" type="Button" parent="."]
layout_mode = 0
offset_left = 250.0
offset_top = 101.0
offset_right = 296.0
offset_bottom = 132.0
text = "Start"
[node name="Name" type="LineEdit" parent="."]
layout_mode = 0
offset_left = 147.0
offset_top = 41.0
offset_right = 308.0
offset_bottom = 72.0
placeholder_text = "Name"
[connection signal="pressed" from="Host" to="." method="_on_host_pressed"]
[connection signal="pressed" from="Join" to="." method="_on_join_pressed"]
[connection signal="pressed" from="Start" to="." method="_on_start_pressed"]