-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExpression.tscn
93 lines (77 loc) · 1.95 KB
/
Expression.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
[gd_scene load_steps=2 format=1]
[ext_resource path="res://Expression.gd" type="Script" id=1]
[node name="Expression" type="VBoxContainer"]
anchor/right = 1
anchor/bottom = 1
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 3
size_flags/vertical = 3
margin/left = 0.0
margin/top = 0.0
margin/right = 0.0
margin/bottom = 0.0
alignment = 0
script/script = ExtResource( 1 )
[node name="Metadata" type="HBoxContainer" parent="."]
focus/ignore_mouse = false
focus/stop_mouse = false
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 0.0
margin/top = 0.0
margin/right = 1024.0
margin/bottom = 24.0
alignment = 0
[node name="Name" type="LineEdit" parent="Metadata"]
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 3
size_flags/vertical = 2
margin/left = 0.0
margin/top = 0.0
margin/right = 504.0
margin/bottom = 24.0
placeholder/alpha = 0.6
focus_mode = 2
caret/caret_blink = false
caret/caret_blink_speed = 0.65
[node name="Equality" type="Label" parent="Metadata"]
focus/ignore_mouse = true
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 0
margin/left = 508.0
margin/top = 5.0
margin/right = 516.0
margin/bottom = 19.0
text = "="
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Evaluation" type="Label" parent="Metadata"]
focus/ignore_mouse = true
focus/stop_mouse = true
size_flags/horizontal = 3
size_flags/vertical = 0
margin/left = 520.0
margin/top = 5.0
margin/right = 1024.0
margin/bottom = 19.0
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Code" type="LineEdit" parent="."]
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 3
size_flags/vertical = 0
margin/left = 0.0
margin/top = 28.0
margin/right = 1024.0
margin/bottom = 52.0
placeholder/alpha = 0.6
focus_mode = 2
caret/caret_blink = false
caret/caret_blink_speed = 0.65
[connection signal="text_entered" from="Code" to="." method="expression_entered"]