This repository was archived by the owner on Aug 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterface.tscn
More file actions
59 lines (52 loc) · 1.64 KB
/
Interface.tscn
File metadata and controls
59 lines (52 loc) · 1.64 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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://OutputStyle.tres" type="StyleBox" id=1]
[ext_resource path="res://InputStylePlainBlack.tres" type="StyleBox" id=2]
[ext_resource path="res://InputLine.gd" type="Script" id=3]
[ext_resource path="res://OutputRich.gd" type="Script" id=4]
[node name="Control" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="PanelText" type="PanelContainer" parent="."]
margin_left = 10.0
margin_top = 10.0
margin_right = 1014.0
margin_bottom = 590.0
size_flags_horizontal = 3
size_flags_vertical = 3
custom_styles/panel = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="LayoutText" type="VBoxContainer" parent="PanelText"]
margin_left = 20.0
margin_top = 20.0
margin_right = 984.0
margin_bottom = 560.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="OutputRich" type="RichTextLabel" parent="PanelText/LayoutText"]
margin_right = 964.0
margin_bottom = 522.0
focus_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
text = "You awake face down in sand with water lapping over you. You can hear the cries of seabirds over the soft surf. Everything aches, but nothing feels broken.
Perhaps you should look around.
"
scroll_following = true
selection_enabled = true
script = ExtResource( 4 )
[node name="InputLine" type="LineEdit" parent="PanelText/LayoutText"]
margin_top = 526.0
margin_right = 964.0
margin_bottom = 540.0
size_flags_horizontal = 15
size_flags_vertical = 0
custom_styles/focus = ExtResource( 2 )
custom_styles/normal = ExtResource( 2 )
clear_button_enabled = true
caret_blink = true
script = ExtResource( 3 )