-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIdeafinder.tscn
85 lines (74 loc) · 2.19 KB
/
Ideafinder.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
[gd_scene load_steps=2 format=2]
[ext_resource path="res://Ideafinder.gd" type="Script" id=1]
[node name="Ideafinder" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -0.663422
margin_top = -0.663406
margin_right = -0.663452
margin_bottom = -0.663391
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="CenterContainer" type="CenterContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"]
margin_left = 297.0
margin_top = 124.0
margin_right = 727.0
margin_bottom = 476.0
alignment = 1
[node name="HBoxContainer2" type="HBoxContainer" parent="CenterContainer/VBoxContainer"]
margin_right = 430.0
margin_bottom = 20.0
alignment = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MenuButton" type="MenuButton" parent="CenterContainer/VBoxContainer/HBoxContainer2"]
margin_left = 187.0
margin_right = 243.0
margin_bottom = 20.0
text = "Wörter"
flat = false
[node name="HBoxContainer" type="HBoxContainer" parent="CenterContainer/VBoxContainer"]
margin_top = 24.0
margin_right = 430.0
margin_bottom = 124.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="CenterContainer/VBoxContainer/HBoxContainer"]
margin_top = 43.0
margin_right = 26.0
margin_bottom = 57.0
text = "Satz"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Sentence" type="TextEdit" parent="CenterContainer/VBoxContainer/HBoxContainer"]
margin_left = 30.0
margin_right = 430.0
margin_bottom = 100.0
rect_min_size = Vector2( 400, 100 )
text = "Mache ein THEMA GENRE ohne FEATURE mit THEMA."
wrap_enabled = true
[node name="Result" type="TextEdit" parent="CenterContainer/VBoxContainer"]
margin_top = 128.0
margin_right = 430.0
margin_bottom = 328.0
rect_min_size = Vector2( 0, 200 )
text = "Mache ein THEMA Spiel im Genre GENRE ohne FEATURE."
readonly = true
wrap_enabled = true
[node name="Generate" type="Button" parent="CenterContainer/VBoxContainer"]
margin_top = 332.0
margin_right = 430.0
margin_bottom = 352.0
text = "Generieren"
[connection signal="pressed" from="CenterContainer/VBoxContainer/Generate" to="." method="_on_Generate_pressed"]