-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArea.tscn
More file actions
62 lines (54 loc) · 1.79 KB
/
Copy pathArea.tscn
File metadata and controls
62 lines (54 loc) · 1.79 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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Script/Area.gd" type="Script" id=1]
[ext_resource path="res://areabg.png" type="Texture" id=2]
[ext_resource path="res://handler.png" type="Texture" id=3]
[ext_resource path="res://fonts/calibri.tres" type="DynamicFont" id=4]
[node name="Area" type="Control"]
margin_right = 407.0
margin_bottom = 123.0
script = ExtResource( 1 )
[node name="Background" type="TextureButton" parent="."]
self_modulate = Color( 1, 1, 1, 0.498039 )
anchor_right = 1.0
anchor_bottom = 1.0
texture_normal = ExtResource( 2 )
expand = true
[node name="ScaleButton" type="TextureButton" parent="."]
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -30.0
margin_top = -30.0
rect_min_size = Vector2( 30, 30 )
texture_normal = ExtResource( 3 )
expand = true
[node name="Label" type="Label" parent="."]
anchor_top = 0.59
anchor_right = 1.0
anchor_bottom = 0.59
margin_bottom = 32.0
custom_fonts/font = ExtResource( 4 )
align = 1
valign = 1
autowrap = true
__meta__ = {
"_edit_use_anchors_": true
}
[node name="CenterContainer" type="CenterContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
[node name="CharContainer" type="HFlowContainer" parent="CenterContainer"]
unique_name_in_owner = true
margin_left = 203.0
margin_top = 61.0
margin_right = 203.0
margin_bottom = 61.0
mouse_filter = 2
custom_constants/vseparation = 0
custom_constants/hseparation = 0
[connection signal="button_down" from="Background" to="." method="_on_Background_button_down"]
[connection signal="button_up" from="Background" to="." method="_on_Background_button_up"]
[connection signal="button_down" from="ScaleButton" to="." method="_on_ScaleButton_button_down"]
[connection signal="button_up" from="ScaleButton" to="." method="_on_ScaleButton_button_up"]