-
Notifications
You must be signed in to change notification settings - Fork 1
/
Shop.tscn
93 lines (77 loc) · 2.66 KB
/
Shop.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=2 format=2]
[ext_resource path="res://Shop.gd" type="Script" id=1]
[node name="Shop" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="MarginContainer" type="MarginContainer" parent="."]
margin_left = -1.0
margin_right = 89.0
margin_bottom = 61.0
[node name="CenterContainer" type="CenterContainer" parent="MarginContainer"]
margin_right = 90.0
margin_bottom = 61.0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/CenterContainer"]
margin_left = 18.0
margin_top = 20.0
margin_right = 72.0
margin_bottom = 40.0
[node name="return_button" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer"]
margin_right = 54.0
margin_bottom = 20.0
text = "Return"
[node name="Leben" type="Label" parent="."]
margin_left = 484.376
margin_top = 277.129
margin_right = 528.376
margin_bottom = 291.129
text = "Leben"
[node name="Dagger" type="Label" parent="."]
margin_left = 485.805
margin_top = 320.32
margin_right = 529.805
margin_bottom = 334.32
text = "Dagger"
[node name="MarginContainer2" type="MarginContainer" parent="."]
margin_left = 522.202
margin_top = 265.016
margin_right = 580.202
margin_bottom = 305.016
__meta__ = {
"_edit_group_": true
}
[node name="CenterContainer" type="CenterContainer" parent="MarginContainer2"]
margin_right = 58.0
margin_bottom = 40.0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer2/CenterContainer"]
margin_left = 19.0
margin_top = 10.0
margin_right = 39.0
margin_bottom = 30.0
[node name="buy_health" type="Button" parent="MarginContainer2/CenterContainer/VBoxContainer"]
margin_right = 20.0
margin_bottom = 20.0
text = "+"
[node name="MarginContainer3" type="MarginContainer" parent="."]
margin_left = 522.202
margin_top = 307.433
margin_right = 580.202
margin_bottom = 347.433
__meta__ = {
"_edit_group_": true
}
[node name="CenterContainer" type="CenterContainer" parent="MarginContainer3"]
margin_right = 58.0
margin_bottom = 40.0
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer3/CenterContainer"]
margin_left = 19.0
margin_top = 10.0
margin_right = 39.0
margin_bottom = 30.0
[node name="buy_dagger" type="Button" parent="MarginContainer3/CenterContainer/VBoxContainer"]
margin_right = 20.0
margin_bottom = 20.0
text = "+"
[connection signal="pressed" from="MarginContainer/CenterContainer/VBoxContainer/return_button" to="." method="_on_return_button_pressed"]
[connection signal="pressed" from="MarginContainer2/CenterContainer/VBoxContainer/buy_health" to="." method="_on_buy_health_pressed"]
[connection signal="pressed" from="MarginContainer3/CenterContainer/VBoxContainer/buy_dagger" to="." method="_on_buy_dagger_pressed"]