-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathInputTransform.tscn
More file actions
63 lines (53 loc) · 1.65 KB
/
InputTransform.tscn
File metadata and controls
63 lines (53 loc) · 1.65 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
[gd_scene load_steps=2 format=3 uid="uid://c66khec1ryedj"]
[ext_resource type="Script" path="res://InputTransform.gd" id="1_sty6c"]
[node name="InputTransform" type="HBoxContainer"]
custom_minimum_size = Vector2(60, 40)
script = ExtResource("1_sty6c")
[node name="LabelScale" type="Label" parent="."]
custom_minimum_size = Vector2(450, 0)
layout_mode = 2
text = "Scale"
[node name="ScaleX" type="LineEdit" parent="LabelScale"]
layout_mode = 0
offset_left = 108.0
offset_top = 2.0
offset_right = 175.063
offset_bottom = 33.0
placeholder_text = "0"
[node name="ScaleY" type="LineEdit" parent="LabelScale"]
layout_mode = 0
offset_left = 239.0
offset_top = 2.0
offset_right = 306.063
offset_bottom = 33.0
placeholder_text = "0"
[node name="ScaleZ" type="LineEdit" parent="LabelScale"]
layout_mode = 0
offset_left = 375.0
offset_right = 442.063
offset_bottom = 31.0
placeholder_text = "0"
[node name="LabelX" type="Label" parent="LabelScale"]
layout_mode = 0
offset_left = 94.0
offset_top = 2.0
offset_right = 134.0
offset_bottom = 28.0
text = "X"
[node name="LabelY" type="Label" parent="LabelScale"]
layout_mode = 0
offset_left = 226.0
offset_top = 2.0
offset_right = 266.0
offset_bottom = 28.0
text = "Y"
[node name="LabelZ" type="Label" parent="LabelScale"]
layout_mode = 0
offset_left = 356.0
offset_top = 2.0
offset_right = 396.0
offset_bottom = 28.0
text = "Z"
[connection signal="text_submitted" from="LabelScale/ScaleX" to="." method="_on_scale_x_text_submitted"]
[connection signal="text_submitted" from="LabelScale/ScaleY" to="." method="_on_scale_y_text_submitted"]
[connection signal="text_submitted" from="LabelScale/ScaleZ" to="." method="_on_scale_z_text_submitted"]