-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomeScreen.tscn
52 lines (41 loc) · 1.62 KB
/
HomeScreen.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
[gd_scene load_steps=3 format=3 uid="uid://ql1m1jip2py8"]
[ext_resource type="Script" path="res://HomeScreen.gd" id="1_rvjg3"]
[ext_resource type="Theme" uid="uid://5l4tnopr2dxu" path="res://Theme.tres" id="2_i0rve"]
[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_rvjg3")
[node name="MarginContainer" type="MarginContainer" parent="."]
layout_mode = 0
offset_right = 102.0
offset_bottom = 115.0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
layout_mode = 2
theme = ExtResource("2_i0rve")
[node name="Title" type="Label" parent="MarginContainer/VBoxContainer"]
layout_mode = 2
text = "The Hunt for Roy
Carnassus 64"
horizontal_alignment = 1
[node name="Play" type="Button" parent="MarginContainer/VBoxContainer"]
layout_mode = 2
text = "Play"
[node name="Options" type="Button" parent="MarginContainer/VBoxContainer"]
layout_mode = 2
text = "Options"
[node name="Exit" type="Button" parent="MarginContainer/VBoxContainer"]
layout_mode = 2
text = "Quit"
[node name="Label" type="Label" parent="MarginContainer/VBoxContainer"]
layout_mode = 2
text = "©️ 1993 Jack Games "
[node name="Camera2D" type="Camera2D" parent="."]
position = Vector2(81, 112)
zoom = Vector2(4, 4)
[connection signal="pressed" from="MarginContainer/VBoxContainer/Play" to="." method="_on_play_pressed"]
[connection signal="pressed" from="MarginContainer/VBoxContainer/Options" to="." method="_on_options_pressed"]
[connection signal="pressed" from="MarginContainer/VBoxContainer/Exit" to="." method="_on_exit_pressed"]