arduino stuffs
Diffstat (limited to 'car_driver/godot/Console.tscn')
| -rw-r--r-- | car_driver/godot/Console.tscn | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/car_driver/godot/Console.tscn b/car_driver/godot/Console.tscn new file mode 100644 index 0000000..026ec44 --- /dev/null +++ b/car_driver/godot/Console.tscn @@ -0,0 +1,42 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://ConsoleWindow.gd" type="Script" id=1] +[ext_resource path="res://Console.gd" type="Script" id=2] +[ext_resource path="res://theme.theme" type="Theme" id=3] + +[node name="ConsoleWindow" type="WindowDialog"] +visible = true +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_top = 40.0 +margin_right = -440.0 +margin_bottom = -220.0 +rect_min_size = Vector2( 300, 200 ) +theme = ExtResource( 3 ) +window_title = "Serial Monitor" +resizable = true +script = ExtResource( 1 ) + +[node name="V" type="VBoxContainer" parent="."] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_right = -4.0 + +[node name="Send" type="LineEdit" parent="V"] +margin_right = 288.0 +margin_bottom = 40.0 +placeholder_text = "input text" +caret_blink = true + +[node name="Console" type="RichTextLabel" parent="V"] +margin_top = 44.0 +margin_right = 288.0 +margin_bottom = 200.0 +focus_mode = 2 +size_flags_vertical = 3 +scroll_following = true +selection_enabled = true +script = ExtResource( 2 ) + +[connection signal="text_entered" from="V/Send" to="." method="_on_Send_text_entered"] |