forked from Dungeonfy-Programmers/Bootfy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsole.tscn
More file actions
38 lines (31 loc) · 1.23 KB
/
Console.tscn
File metadata and controls
38 lines (31 loc) · 1.23 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
[gd_scene load_steps=4 format=3 uid="uid://jgkojjnegp1v"]
[ext_resource type="Script" uid="uid://omu4y3n8d3wc" path="res://console.gd" id="1_8t2xt"]
[ext_resource type="FontFile" uid="uid://h60fpjwv0jro" path="res://Monocraft-nerd-fonts-patched.ttc" id="2_pb05i"]
[sub_resource type="Theme" id="Theme_pb05i"]
default_font = ExtResource("2_pb05i")
[node name="Window2" type="Window"]
title = "Dungeonfy Console"
position = Vector2i(0, 36)
size = Vector2i(1000, 500)
script = ExtResource("1_8t2xt")
[node name="UI" type="VBoxContainer" parent="."]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="TextEdit" type="TextEdit" parent="UI"]
layout_mode = 2
size_flags_vertical = 3
theme = SubResource("Theme_pb05i")
theme_override_colors/font_readonly_color = Color(6.35326e-06, 0.685491, 0.431508, 1)
theme_override_colors/font_color = Color(6.35326e-06, 0.685491, 0.431508, 1)
editable = false
scroll_smooth = true
[node name="LineEdit" type="LineEdit" parent="UI"]
layout_mode = 2
theme = SubResource("Theme_pb05i")
placeholder_text = "Enter Commands: "
[connection signal="text_submitted" from="UI/LineEdit" to="." method="_on_line_edit_submit"]