blob: b40b2da6dc795065f2811a694890a3f2181da2bf (
plain)
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
92
93
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Assets/Shaders/crt_shader.tres" type="Material" id=1]
[ext_resource path="res://Scripts/Texty.cs" type="Script" id=3]
[node name="Texty" type="Node"]
script = ExtResource( 3 )
[node name="Terminal" type="CanvasLayer" parent="."]
[node name="Game" type="VBoxContainer" parent="Terminal"]
anchor_right = 1.0
anchor_bottom = 1.0
[node name="StatusLine" type="PanelContainer" parent="Terminal/Game"]
margin_right = 640.0
margin_bottom = 53.0
[node name="Container" type="HBoxContainer" parent="Terminal/Game/StatusLine"]
margin_left = 14.0
margin_top = 14.0
margin_right = 626.0
margin_bottom = 39.0
size_flags_horizontal = 3
[node name="Title" type="Label" parent="Terminal/Game/StatusLine/Container"]
margin_right = 612.0
margin_bottom = 25.0
size_flags_horizontal = 3
size_flags_vertical = 6
text = "Adventure Title"
max_lines_visible = 1
[node name="Output" type="PanelContainer" parent="Terminal/Game"]
margin_top = 61.0
margin_right = 640.0
margin_bottom = 399.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="Container" type="ScrollContainer" parent="Terminal/Game/Output"]
margin_left = 14.0
margin_top = 14.0
margin_right = 626.0
margin_bottom = 324.0
mouse_filter = 1
size_flags_horizontal = 3
size_flags_vertical = 3
scroll_horizontal_enabled = false
[node name="Lines" type="VBoxContainer" parent="Terminal/Game/Output/Container"]
margin_right = 612.0
margin_bottom = 27.0
size_flags_horizontal = 3
[node name="RichTextLabel" type="RichTextLabel" parent="Terminal/Game/Output/Container/Lines"]
margin_right = 612.0
margin_bottom = 27.0
text = "This is where the output goes"
fit_content_height = true
[node name="Input" type="PanelContainer" parent="Terminal/Game"]
margin_top = 407.0
margin_right = 640.0
margin_bottom = 480.0
[node name="Container" type="HBoxContainer" parent="Terminal/Game/Input"]
margin_left = 14.0
margin_top = 14.0
margin_right = 626.0
margin_bottom = 59.0
[node name="Prompt" type="Label" parent="Terminal/Game/Input/Container"]
margin_top = 10.0
margin_right = 20.0
margin_bottom = 35.0
text = "?>"
[node name="Text" type="LineEdit" parent="Terminal/Game/Input/Container"]
margin_left = 28.0
margin_right = 612.0
margin_bottom = 45.0
size_flags_horizontal = 3
placeholder_text = "Command Input"
[node name="Screen" type="CanvasLayer" parent="."]
[node name="Shader" type="ColorRect" parent="Screen"]
material = ExtResource( 1 )
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
size_flags_vertical = 3
|