-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDemo.tscn
More file actions
65 lines (55 loc) · 1.86 KB
/
Demo.tscn
File metadata and controls
65 lines (55 loc) · 1.86 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
64
65
[gd_scene load_steps=4 format=2]
[ext_resource path="res://icon.png" type="Texture" id=1]
[ext_resource path="res://addons/stable_horde_client/stable_horde_client.gd" type="Script" id=2]
[ext_resource path="res://Demo.gd" type="Script" id=3]
[node name="VBoxContainer" type="VBoxContainer"]
margin_right = 1024.0
margin_bottom = 600.0
script = ExtResource( 3 )
[node name="RichTextLabel" type="RichTextLabel" parent="."]
margin_right = 1024.0
margin_bottom = 15.0
bbcode_enabled = true
bbcode_text = "Check out my [color=yellow][url=stable horde client]fully fledged client[/url][/color]."
text = "Check out my fully fledged client."
fit_content_height = true
[node name="LineEdit" type="LineEdit" parent="."]
unique_name_in_owner = true
margin_top = 19.0
margin_right = 1024.0
margin_bottom = 43.0
placeholder_text = "A horde of cute blue robots with gears on their head."
[node name="Button" type="Button" parent="."]
unique_name_in_owner = true
margin_top = 47.0
margin_right = 1024.0
margin_bottom = 67.0
text = "Generate"
[node name="Status" type="Label" parent="."]
unique_name_in_owner = true
margin_top = 71.0
margin_right = 1024.0
margin_bottom = 85.0
text = "Status"
align = 1
[node name="StableHordeClient" type="HTTPRequest" parent="."]
unique_name_in_owner = true
script = ExtResource( 2 )
steps = 20
[node name="Grid" type="GridContainer" parent="."]
unique_name_in_owner = true
margin_top = 89.0
margin_right = 1024.0
margin_bottom = 600.0
size_flags_horizontal = 3
size_flags_vertical = 3
columns = 7
[node name="TextureRect" type="TextureRect" parent="Grid"]
margin_right = 128.0
margin_bottom = 128.0
rect_min_size = Vector2( 128, 128 )
texture = ExtResource( 1 )
expand = true
stretch_mode = 6
[connection signal="meta_clicked" from="RichTextLabel" to="." method="_on_RichTextLabel_meta_clicked"]
[connection signal="pressed" from="Button" to="." method="_on_Button_pressed"]