-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.tscn
93 lines (85 loc) · 2.63 KB
/
menu.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
86
87
88
89
90
91
92
93
[gd_scene load_steps=6 format=3 uid="uid://d233iibt7fqlw"]
[ext_resource type="Script" path="res://menu.gd" id="1_mnlwq"]
[ext_resource type="Texture2D" uid="uid://cun2r7e7v7g3e" path="res://assets/menu/Main_MenU.png" id="2_2xwkn"]
[ext_resource type="Texture2D" uid="uid://bsqj6q5qnt1u3" path="res://assets/menu/Button_Normal.png" id="2_a8jb2"]
[ext_resource type="Texture2D" uid="uid://c3admpbl5x5bl" path="res://assets/menu/Button_Click.png" id="3_qy7ss"]
[ext_resource type="Texture2D" uid="uid://by06fak1xea8j" path="res://assets/menu/Button_Hover.png" id="4_mdhka"]
[node name="Menu" type="Control" groups=["menu"]]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_mnlwq")
[node name="TextureRect" type="TextureRect" parent="."]
texture_filter = 3
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("2_2xwkn")
stretch_mode = 4
[node name="StartButton" type="TextureButton" parent="."]
texture_filter = 3
layout_mode = 1
anchors_preset = -1
anchor_right = 0.075
anchor_bottom = 0.022
offset_left = 448.0
offset_top = 447.0
offset_right = 448.0
offset_bottom = 447.16
scale = Vector2(4, 4)
toggle_mode = true
texture_pressed = ExtResource("3_qy7ss")
texture_hover = ExtResource("4_mdhka")
stretch_mode = 3
[node name="Label" type="Label" parent="StartButton"]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_top = 0.75
offset_bottom = 0.75
grow_horizontal = 2
grow_vertical = 2
theme_override_colors/font_color = Color(0, 0, 0, 1)
theme_override_font_sizes/font_size = 8
text = "Započni
"
horizontal_alignment = 1
vertical_alignment = 1
[node name="ExitButton" type="TextureButton" parent="."]
visible = false
texture_filter = 3
layout_mode = 1
anchors_preset = -1
anchor_right = 0.075
anchor_bottom = 0.022
offset_left = 448.0
offset_top = 447.0
offset_right = 448.0
offset_bottom = 447.16
scale = Vector2(4, 4)
texture_normal = ExtResource("2_a8jb2")
texture_pressed = ExtResource("3_qy7ss")
texture_hover = ExtResource("4_mdhka")
[node name="Label" type="Label" parent="ExitButton"]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_top = 0.75
offset_bottom = 0.75
grow_horizontal = 2
grow_vertical = 2
theme_override_colors/font_color = Color(0, 0, 0, 1)
theme_override_font_sizes/font_size = 8
text = "Izadji"
horizontal_alignment = 1
vertical_alignment = 1
[connection signal="pressed" from="StartButton" to="." method="_on_start_button_pressed"]
[connection signal="pressed" from="ExitButton" to="." method="_on_exit_button_pressed"]