forked from lastleon/Beerventures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTitleScreen.tscn
48 lines (39 loc) · 1.65 KB
/
TitleScreen.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=3 format=2]
[ext_resource path="res://TitleScreen.gd" type="Script" id=1]
[ext_resource path="res://Logo.png" type="Texture" id=2]
[node name="TitleScreen" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="MarginContainer" type="MarginContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="CenterContainer" type="CenterContainer" parent="MarginContainer"]
margin_right = 1024.0
margin_bottom = 600.0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/CenterContainer"]
margin_left = 470.0
margin_top = 266.0
margin_right = 553.0
margin_bottom = 334.0
[node name="Button" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_right = 83.0
margin_bottom = 20.0
text = "Start Game"
[node name="Button2" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 24.0
margin_right = 83.0
margin_bottom = 44.0
text = "Shop"
[node name="Button3" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_top = 48.0
margin_right = 83.0
margin_bottom = 68.0
text = "Quit Game"
[node name="Sprite" type="Sprite" parent="MarginContainer"]
position = Vector2( 516.522, 187.925 )
scale = Vector2( 0.325563, 0.320295 )
texture = ExtResource( 2 )
[connection signal="pressed" from="MarginContainer/CenterContainer/VBoxContainer/Button" to="." method="_on_Button_pressed"]
[connection signal="pressed" from="MarginContainer/CenterContainer/VBoxContainer/Button2" to="." method="_on_Button2_pressed"]
[connection signal="pressed" from="MarginContainer/CenterContainer/VBoxContainer/Button3" to="." method="_on_Button3_pressed"]