SupaLidlGame/UI/Debug/DebugUI.tscn

59 lines
1.9 KiB
Plaintext
Raw Normal View History

2023-09-29 11:32:15 -07:00
[gd_scene load_steps=4 format=3 uid="uid://be8bc4eivsg4s"]
2023-09-24 18:51:23 -07:00
[ext_resource type="Script" path="res://Debug/DebugConsole.cs" id="1_3fw5a"]
2023-09-29 11:32:15 -07:00
[ext_resource type="Script" path="res://UI/Debug/DebugUI.cs" id="1_b7eq2"]
2023-09-24 18:51:23 -07:00
[ext_resource type="Script" path="res://Debug/Entry.cs" id="2_kdlsh"]
2023-07-24 12:40:28 -07:00
2023-09-29 11:32:15 -07:00
[node name="DebugUI" type="CanvasLayer"]
process_mode = 3
script = ExtResource("1_b7eq2")
2023-07-24 12:40:28 -07:00
2023-09-29 11:32:15 -07:00
[node name="ConsoleWindow" type="Window" parent="."]
unique_name_in_owner = true
handle_input_locally = false
2023-09-24 18:51:23 -07:00
title = "Supa Developer Console"
position = Vector2i(32, 32)
size = Vector2i(1280, 720)
2023-09-29 11:32:15 -07:00
visible = false
2023-09-24 18:51:23 -07:00
always_on_top = true
2023-09-29 11:32:15 -07:00
[node name="DebugConsole" type="ColorRect" parent="ConsoleWindow"]
unique_name_in_owner = true
2023-09-24 18:51:23 -07:00
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
2023-09-29 11:32:15 -07:00
color = Color(0.117647, 0.117647, 0.180392, 1)
2023-09-24 18:51:23 -07:00
script = ExtResource("1_3fw5a")
2023-09-29 11:32:15 -07:00
[node name="VBoxContainer" type="VBoxContainer" parent="ConsoleWindow/DebugConsole"]
2023-07-24 12:40:28 -07:00
layout_mode = 1
2023-09-24 18:51:23 -07:00
anchors_preset = 15
2023-07-24 12:40:28 -07:00
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
2023-09-24 18:51:23 -07:00
grow_vertical = 2
2023-09-29 11:32:15 -07:00
[node name="Output" type="RichTextLabel" parent="ConsoleWindow/DebugConsole/VBoxContainer"]
2023-09-24 18:51:23 -07:00
unique_name_in_owner = true
layout_mode = 2
size_flags_vertical = 3
2023-09-29 11:32:15 -07:00
theme_override_font_sizes/normal_font_size = 16
theme_override_font_sizes/bold_font_size = 16
2023-09-24 18:51:23 -07:00
bbcode_enabled = true
scroll_following = true
2023-09-29 11:32:15 -07:00
[node name="Entry" type="CodeEdit" parent="ConsoleWindow/DebugConsole/VBoxContainer"]
2023-09-24 18:51:23 -07:00
unique_name_in_owner = true
2023-09-29 11:32:15 -07:00
custom_minimum_size = Vector2(0, 36)
2023-09-24 18:51:23 -07:00
layout_mode = 2
2023-09-29 11:32:15 -07:00
theme_override_colors/background_color = Color(0.0941176, 0.0941176, 0.145098, 1)
theme_override_font_sizes/font_size = 16
2023-09-24 18:51:23 -07:00
placeholder_text = "Enter a GDScript expression or \\command..."
draw_control_chars = true
code_completion_enabled = true
auto_brace_completion_enabled = true
auto_brace_completion_highlight_matching = true
2023-09-24 18:51:23 -07:00
script = ExtResource("2_kdlsh")