-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainMenu.tscn
48 lines (42 loc) · 1.06 KB
/
MainMenu.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
[gd_scene load_steps=2 format=2]
[ext_resource path="res://MainMenu.gd" type="Script" id=1]
[node name="MainMenu" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ColorRect" type="ColorRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0.117647, 0.027451, 0.027451, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -20.5
margin_top = -27.5
margin_right = 20.5
margin_bottom = 27.5
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="VBoxContainer"]
margin_right = 41.0
margin_bottom = 31.0
text = "I.d.lot
"
[node name="StartButton" type="Button" parent="VBoxContainer"]
margin_top = 35.0
margin_right = 41.0
margin_bottom = 55.0
text = "Start"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="VBoxContainer/StartButton" to="." method="_on_StartButton_pressed"]