SupaLidlGame/UI/Debug/DebugUI.tscn

62 lines
1.7 KiB
Plaintext
Raw Normal View History

2023-09-24 18:51:23 -07:00
[gd_scene load_steps=3 format=3 uid="uid://be8bc4eivsg4s"]
[ext_resource type="Script" path="res://Debug/DebugConsole.cs" id="1_3fw5a"]
[ext_resource type="Script" path="res://Debug/Entry.cs" id="2_kdlsh"]
2023-07-24 12:40:28 -07:00
[node name="DebugUI" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
2023-09-24 18:51:23 -07:00
[node name="Window" type="Window" parent="."]
disable_3d = true
gui_embed_subwindows = true
title = "Supa Developer Console"
position = Vector2i(32, 32)
size = Vector2i(1280, 720)
always_on_top = true
[node name="DebugConsole" type="Control" parent="Window"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_3fw5a")
[node name="VBoxContainer" type="VBoxContainer" parent="Window/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
[node name="Output" type="RichTextLabel" parent="Window/DebugConsole/VBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
size_flags_vertical = 3
theme_override_font_sizes/normal_font_size = 24
theme_override_font_sizes/bold_font_size = 24
bbcode_enabled = true
text = "[b]/root/World:[/b] \\echo :CurrentPlayer:Health
100
"
scroll_following = true
[node name="Entry" type="CodeEdit" parent="Window/DebugConsole/VBoxContainer"]
2023-09-24 18:51:23 -07:00
unique_name_in_owner = true
custom_minimum_size = Vector2(0, 48)
2023-09-24 18:51:23 -07:00
layout_mode = 2
theme_override_font_sizes/font_size = 24
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")