-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOptions.tscn
More file actions
81 lines (68 loc) · 3.38 KB
/
Options.tscn
File metadata and controls
81 lines (68 loc) · 3.38 KB
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
[gd_scene load_steps=10 format=3 uid="uid://6wgctohcvfte"]
[ext_resource type="Texture2D" uid="uid://c3fn1ppgdav4d" path="res://assets/backpack.png" id="1_2r1l1"]
[ext_resource type="Script" uid="uid://cjyiwpvt3l6me" path="res://options.gd" id="1_p8250"]
[ext_resource type="Texture2D" uid="uid://c30y87tpk5nvi" path="res://assets/status.png" id="2_bwr58"]
[ext_resource type="Texture2D" uid="uid://db7d38mogv2yf" path="res://assets/skills.png" id="3_dfe3t"]
[ext_resource type="Texture2D" uid="uid://c4nrcqenb1u7i" path="res://assets/spells.png" id="4_t1d33"]
[ext_resource type="Texture2D" uid="uid://cirk3qabkxsfu" path="res://assets/exit.png" id="6_dfe3t"]
[ext_resource type="Texture2D" uid="uid://cig85t7o0v7p2" path="res://assets/perception.png" id="6_t1d33"]
[ext_resource type="Texture2D" uid="uid://gct34flq4bg1" path="res://assets/target.png" id="7_5pjjr"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_5pjjr"]
[node name="Options" type="Node2D"]
script = ExtResource("1_p8250")
[node name="Buttons_BG" type="Panel" parent="."]
texture_filter = 1
offset_right = 320.0
offset_bottom = 353.0
theme_override_styles/panel = SubResource("StyleBoxEmpty_5pjjr")
[node name="GridContainer" type="GridContainer" parent="Buttons_BG"]
texture_filter = 1
layout_mode = 0
offset_left = 23.0
offset_top = 40.0
offset_right = 2302.0
offset_bottom = 1558.0
scale = Vector2(0.125, 0.125)
columns = 3
[node name="backpack_button" type="TextureButton" parent="Buttons_BG/GridContainer"]
texture_filter = 1
layout_mode = 2
texture_normal = ExtResource("1_2r1l1")
stretch_mode = 0
[node name="status_button" type="TextureButton" parent="Buttons_BG/GridContainer"]
texture_filter = 1
layout_mode = 2
texture_normal = ExtResource("2_bwr58")
stretch_mode = 0
[node name="skills_button" type="TextureButton" parent="Buttons_BG/GridContainer"]
texture_filter = 1
layout_mode = 2
texture_normal = ExtResource("3_dfe3t")
stretch_mode = 0
[node name="spells_button" type="TextureButton" parent="Buttons_BG/GridContainer"]
texture_filter = 1
layout_mode = 2
texture_normal = ExtResource("4_t1d33")
stretch_mode = 0
[node name="look_button" type="TextureButton" parent="Buttons_BG/GridContainer"]
texture_filter = 1
layout_mode = 2
texture_normal = ExtResource("6_t1d33")
stretch_mode = 0
[node name="target_button" type="TextureButton" parent="Buttons_BG/GridContainer"]
texture_filter = 1
layout_mode = 2
texture_normal = ExtResource("7_5pjjr")
stretch_mode = 0
[node name="exit_button" type="TextureButton" parent="Buttons_BG/GridContainer"]
texture_filter = 1
layout_mode = 2
texture_normal = ExtResource("6_dfe3t")
stretch_mode = 0
[connection signal="pressed" from="Buttons_BG/GridContainer/backpack_button" to="." method="_on_backpack_button_pressed"]
[connection signal="pressed" from="Buttons_BG/GridContainer/status_button" to="." method="_on_status_button_pressed"]
[connection signal="pressed" from="Buttons_BG/GridContainer/skills_button" to="." method="_on_skills_button_pressed"]
[connection signal="pressed" from="Buttons_BG/GridContainer/spells_button" to="." method="_on_spells_button_pressed"]
[connection signal="pressed" from="Buttons_BG/GridContainer/look_button" to="." method="_on_look_button_pressed"]
[connection signal="pressed" from="Buttons_BG/GridContainer/target_button" to="." method="_on_target_button_pressed"]
[connection signal="pressed" from="Buttons_BG/GridContainer/exit_button" to="." method="_on_exit_button_pressed"]