blob: 5a21790b0a10099c7be7c0fb3d2c2c7a061c7139 (
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
|
[gd_scene load_steps=2 format=3 uid="uid://b886lame7u8c8"]
[ext_resource type="Script" path="res://Scripts/Terminal/InputArea.cs" id="1"]
[node name="InputArea" type="HBoxContainer"]
anchors_preset = 10
anchor_right = 1.0
offset_bottom = 25.0
grow_horizontal = 2
script = ExtResource("1")
[node name="PromptLabel" type="Label" parent="."]
unique_name_in_owner = true
layout_mode = 2
offset_right = 20.0
offset_bottom = 28.0
size_flags_horizontal = 0
theme_type_variation = &"InvertedLabel"
text = "?>"
[node name="TextInput" type="LineEdit" parent="."]
unique_name_in_owner = true
layout_mode = 2
offset_left = 24.0
offset_top = 1.0
offset_right = 1152.0
offset_bottom = 26.0
size_flags_horizontal = 3
size_flags_vertical = 4
context_menu_enabled = false
selecting_enabled = false
flat = true
caret_blink = true
caret_blink_interval = 0.5
caret_force_displayed = true
[connection signal="text_submitted" from="TextInput" to="." method="OnTextEntered"]
|