-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWorld.tscn
78 lines (69 loc) · 1.92 KB
/
World.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
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Menu.gd" type="Script" id=1]
[ext_resource path="res://background.jpg" type="Texture" id=2]
[node name="World" type="Node"]
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( 516.087, 302.918 )
scale = Vector2( 1.65856, 1.97899 )
z_index = -1
texture = ExtResource( 2 )
[node name="Menu" type="Control" parent="."]
margin_right = 40.0
margin_bottom = 40.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Selection" type="TabContainer" parent="Menu"]
visible = false
margin_left = 713.0
margin_top = 16.0
margin_right = 1031.0
margin_bottom = 517.0
tab_align = 0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Classes" type="ItemList" parent="Menu/Selection"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Cursors" type="ItemList" parent="Menu/Selection"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="Menu"]
margin_left = 969.493
margin_top = 6.47798
margin_right = 1020.49
margin_bottom = 32.478
text = "Menu"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Respawn" type="Button" parent="Menu"]
margin_left = 890.712
margin_top = 6.47798
margin_right = 958.712
margin_bottom = 32.478
text = "Respawn"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="item_selected" from="Menu/Selection/Classes" to="Menu" method="_on_class_selected"]
[connection signal="item_selected" from="Menu/Selection/Cursors" to="Menu" method="_on_Cursors_item_selected"]
[connection signal="pressed" from="Menu/Button" to="Menu" method="_on_Button_pressed"]
[connection signal="pressed" from="Menu/Respawn" to="Menu" method="_on_respawn_pressed"]