blob: baf53159489a5f0c946377160a757d11bb8f7241 (
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
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Scripts/Game/Input.cs" type="Script" id=1]
[ext_resource path="res://Scripts/Game/CommandParser.cs" type="Script" id=2]
[node name="Input" type="PanelContainer"]
anchor_right = 1.0
theme_type_variation = "InvertedPanelContainer"
script = ExtResource( 1 )
[node name="Container" type="HBoxContainer" parent="."]
margin_left = 8.0
margin_top = 2.0
margin_right = 632.0
margin_bottom = 27.0
[node name="PromptLabel" type="Label" parent="Container"]
unique_name_in_owner = true
margin_right = 20.0
margin_bottom = 25.0
theme_type_variation = "InvertedLabel"
text = "?>"
[node name="TextInput" type="LineEdit" parent="Container"]
unique_name_in_owner = true
margin_left = 28.0
margin_right = 624.0
margin_bottom = 25.0
size_flags_horizontal = 3
context_menu_enabled = false
selecting_enabled = false
caret_blink = true
[node name="CommandParser" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource( 2 )
[connection signal="text_entered" from="Container/TextInput" to="." method="OnTextEntered"]
|