From 05d29ccce1898ed89c0b650c77242c2fa2805128 Mon Sep 17 00:00:00 2001 From: Sophia Pearson Date: Fri, 20 May 2022 00:45:25 +0200 Subject: texty: initial commit --- Scenes/OutputRow.tscn | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Scenes/OutputRow.tscn (limited to 'Scenes/OutputRow.tscn') diff --git a/Scenes/OutputRow.tscn b/Scenes/OutputRow.tscn new file mode 100644 index 0000000..9259e77 --- /dev/null +++ b/Scenes/OutputRow.tscn @@ -0,0 +1,32 @@ +[gd_scene load_steps=3 format=2] + +[ext_resource path="res://Assets/Fonts/VT323Font24.tres" type="DynamicFont" id=1] +[ext_resource path="res://Scripts/OutputRow.cs" type="Script" id=2] + +[node name="OutputRow" type="VBoxContainer"] +margin_right = 992.0 +margin_bottom = 32.0 +size_flags_horizontal = 3 +script = ExtResource( 2 ) +__meta__ = { +"_edit_group_": true +} + +[node name="Input" type="Label" parent="."] +margin_right = 992.0 +margin_bottom = 25.0 +size_flags_horizontal = 3 +custom_colors/font_color = Color( 0.839216, 0.00784314, 0.439216, 1 ) +custom_fonts/font = ExtResource( 1 ) +text = "This is where the input goes" +autowrap = true + +[node name="Output" type="Label" parent="." groups=["output_rows"]] +margin_top = 29.0 +margin_right = 992.0 +margin_bottom = 54.0 +size_flags_horizontal = 3 +custom_colors/font_color = Color( 0, 0.333333, 1, 1 ) +custom_fonts/font = ExtResource( 1 ) +text = "This is where the output goes" +autowrap = true -- cgit v1.2.3