-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.tscn
85 lines (76 loc) · 2.01 KB
/
Game.tscn
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Fonts/Font-16.tres" type="DynamicFont" id=1]
[ext_resource path="res://Game.gd" type="Script" id=6]
[node name="Lobby" type="Node2D"]
script = ExtResource( 6 )
[node name="hostButton" type="Button" parent="."]
margin_left = 171.426
margin_top = 13.2261
margin_right = 287.426
margin_bottom = 39.2261
custom_fonts/font = ExtResource( 1 )
text = "Host Game"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="joinButton" type="Button" parent="."]
margin_left = 171.426
margin_top = 52.4382
margin_right = 287.426
margin_bottom = 78.4382
custom_fonts/font = ExtResource( 1 )
text = "Join Game"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ipTextEdit" type="TextEdit" parent="."]
margin_left = 110.424
margin_top = 95.1236
margin_right = 278.424
margin_bottom = 119.124
custom_fonts/font = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="nameTextEdit" type="TextEdit" parent="."]
margin_left = 65.0
margin_top = 39.0
margin_right = 162.0
margin_bottom = 63.0
custom_fonts/font = ExtResource( 1 )
text = "Nameless"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="."]
margin_left = 33.3427
margin_top = 98.9628
margin_right = 85.3427
margin_bottom = 118.963
custom_fonts/font = ExtResource( 1 )
text = "IP Add:"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="NotificationText" type="Label" parent="."]
margin_left = 48.0434
margin_top = 141.649
margin_right = 269.043
margin_bottom = 161.649
custom_fonts/font = ExtResource( 1 )
text = "Connected - Waiting for Host"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label2" type="Label" parent="."]
margin_left = 8.04424
margin_top = 40.0583
margin_right = 56.0442
margin_bottom = 60.0583
custom_fonts/font = ExtResource( 1 )
text = "Name:"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="hostButton" to="." method="_on_hostButton_pressed"]
[connection signal="pressed" from="joinButton" to="." method="_on_joinButton_pressed"]