diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-10-04 22:02:27 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-10-04 22:18:24 +0200 |
| commit | 0e93e05427b045088a8f5257cee3c1a3a54e7888 (patch) | |
| tree | 609b7aef21a5e3a0e6ba4c2e21c2f52d3fa73702 /Scenes/Terminal/InputArea.tscn | |
| parent | 5aef5f2804e6c32d93174719bc66eec98ae62a46 (diff) | |
| download | texty-0e93e05427b045088a8f5257cee3c1a3a54e7888.tar.xz texty-0e93e05427b045088a8f5257cee3c1a3a54e7888.zip | |
scenes: finish Godot 4 upgrades
Diffstat (limited to 'Scenes/Terminal/InputArea.tscn')
| -rw-r--r-- | Scenes/Terminal/InputArea.tscn | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/Scenes/Terminal/InputArea.tscn b/Scenes/Terminal/InputArea.tscn index 54c514e..5a21790 100644 --- a/Scenes/Terminal/InputArea.tscn +++ b/Scenes/Terminal/InputArea.tscn @@ -1,27 +1,37 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://b886lame7u8c8"] -[ext_resource path="res://Scripts/Terminal/InputArea.cs" type="Script" id=1] +[ext_resource type="Script" path="res://Scripts/Terminal/InputArea.cs" id="1"] [node name="InputArea" type="HBoxContainer"] -offset_right = 640.0 +anchors_preset = 10 +anchor_right = 1.0 offset_bottom = 25.0 -script = ExtResource( 1 ) +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 = 25.0 -theme_type_variation = "InvertedLabel" +offset_bottom = 28.0 +size_flags_horizontal = 0 +theme_type_variation = &"InvertedLabel" text = "?>" [node name="TextInput" type="LineEdit" parent="."] unique_name_in_owner = true -offset_left = 28.0 -offset_right = 640.0 -offset_bottom = 25.0 +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"] |
