aboutsummaryrefslogtreecommitdiff
path: root/client/menu/character_menu.tscn
blob: 4d91425a207620ec9f92e9a07659c0c4e59635f7 (plain)
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
[gd_scene load_steps=6 format=3 uid="uid://1f7xpirm5d28"]

[ext_resource type="Theme" uid="uid://b0qmvo504e457" path="res://menu/theme.tres" id="1_ak2pw"]
[ext_resource type="Script" path="res://menu/character_menu.gd" id="1_brhd1"]
[ext_resource type="PackedScene" uid="uid://b3hhir2fvnunu" path="res://player/character/character.tscn" id="3_odq7n"]
[ext_resource type="PackedScene" uid="uid://bg2d78ycorcqk" path="res://menu/scene_transition.tscn" id="4_c0ocf"]

[sub_resource type="Environment" id="Environment_ex25y"]
background_mode = 1
background_color = Color(0.145548, 0.151043, 0.207031, 1)

[node name="CharacterMenu" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme = ExtResource("1_ak2pw")
script = ExtResource("1_brhd1")

[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = SubResource("Environment_ex25y")

[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
transform = Transform3D(0.857401, 0, 0.514649, -0.15367, 0.954381, 0.256012, -0.491171, -0.298591, 0.818287, 2.76633, 1, 1.90733)

[node name="Camera3D" type="Camera3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.75, 1.75)

[node name="guy" parent="." instance=ExtResource("3_odq7n")]

[node name="Panel" type="Panel" parent="."]
layout_mode = 1
anchors_preset = 10
anchor_right = 1.0
offset_bottom = 113.0
grow_horizontal = 2

[node name="a" type="VBoxContainer" parent="Panel"]
layout_mode = 1
anchors_preset = 5
anchor_left = 0.5
anchor_right = 0.5
offset_left = -213.0
offset_top = 13.0
offset_right = 216.0
offset_bottom = 110.0
grow_horizontal = 2

[node name="Label" type="Label" parent="Panel/a"]
layout_mode = 2
text = "This textbox is useless."
horizontal_alignment = 1

[node name="LineEdit" type="LineEdit" parent="Panel/a"]
layout_mode = 2

[node name="Panel2" type="Panel" parent="."]
layout_mode = 1
anchors_preset = 12
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_top = -61.0
grow_horizontal = 2
grow_vertical = 0

[node name="back" type="Button" parent="Panel2"]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -39.5
offset_top = -22.0
offset_right = 39.5
offset_bottom = 22.0
grow_horizontal = 2
grow_vertical = 2
size_flags_vertical = 8
text = "Back"

[node name="SceneTransition" parent="." instance=ExtResource("4_c0ocf")]
visible = false
layout_mode = 1

[connection signal="pressed" from="Panel2/back" to="." method="_on_back_pressed"]