mirror of
https://github.com/JohnBreaux/Boat-Battle.git
synced 2024-11-15 05:25:57 +00:00
64 lines
2.1 KiB
Plaintext
64 lines
2.1 KiB
Plaintext
[gd_scene load_steps=5 format=2]
|
|
|
|
[ext_resource path="res://script/debug/debug_menu.gd" type="Script" id=2]
|
|
[ext_resource path="res://script/debug/In.gd" type="Script" id=3]
|
|
[ext_resource path="res://script/debug/Out.gd" type="Script" id=4]
|
|
[ext_resource path="res://debug.tres" type="Theme" id=5]
|
|
|
|
[node name="Debug" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
theme = ExtResource( 5 )
|
|
script = ExtResource( 2 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="debug_canvas" type="CanvasLayer" parent="."]
|
|
layer = 69
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="debug_canvas"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
margin_bottom = -190.0
|
|
custom_constants/separation = 2
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="TextEdit" type="TextEdit" parent="debug_canvas/VBoxContainer"]
|
|
margin_right = 640.0
|
|
margin_bottom = 144.0
|
|
grow_vertical = 0
|
|
rect_min_size = Vector2( 0, 144 )
|
|
theme = ExtResource( 5 )
|
|
readonly = true
|
|
syntax_highlighting = true
|
|
fold_gutter = true
|
|
smooth_scrolling = true
|
|
wrap_enabled = true
|
|
minimap_draw = true
|
|
script = ExtResource( 4 )
|
|
|
|
[node name="LineEdit" type="LineEdit" parent="debug_canvas/VBoxContainer"]
|
|
margin_top = 146.0
|
|
margin_right = 640.0
|
|
margin_bottom = 170.0
|
|
focus_neighbour_left = NodePath(".")
|
|
focus_neighbour_top = NodePath(".")
|
|
focus_neighbour_right = NodePath(".")
|
|
focus_neighbour_bottom = NodePath(".")
|
|
focus_next = NodePath(".")
|
|
focus_previous = NodePath(".")
|
|
theme = ExtResource( 5 )
|
|
max_length = 256
|
|
placeholder_text = "By your command."
|
|
caret_blink = true
|
|
script = ExtResource( 3 )
|
|
|
|
[connection signal="clear_in" from="." to="debug_canvas/VBoxContainer/LineEdit" method="_on_Debug_clear_in"]
|
|
[connection signal="clear_out" from="." to="debug_canvas/VBoxContainer/TextEdit" method="_on_Debug_clear_out"]
|
|
[connection signal="history_event" from="." to="debug_canvas/VBoxContainer/LineEdit" method="_on_Debug_history_event"]
|
|
[connection signal="print_text" from="." to="debug_canvas/VBoxContainer/TextEdit" method="_on_Debug_print_text"]
|
|
[connection signal="text_entered" from="debug_canvas/VBoxContainer/LineEdit" to="." method="_on_LineEdit_text_entered"]
|