diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-05-20 00:45:25 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-05-20 18:56:04 +0200 |
| commit | 05d29ccce1898ed89c0b650c77242c2fa2805128 (patch) | |
| tree | e8ee3bcb570fa6f3d9d96273c2bf4d4c8618d08b /Scenes/Game.tscn | |
| download | texty-05d29ccce1898ed89c0b650c77242c2fa2805128.tar.xz texty-05d29ccce1898ed89c0b650c77242c2fa2805128.zip | |
texty: initial commit
Diffstat (limited to 'Scenes/Game.tscn')
| -rw-r--r-- | Scenes/Game.tscn | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Scenes/Game.tscn b/Scenes/Game.tscn new file mode 100644 index 0000000..5c24cf2 --- /dev/null +++ b/Scenes/Game.tscn @@ -0,0 +1,38 @@ +[gd_scene load_steps=5 format=2] + +[ext_resource path="res://Scenes/InputContainer.tscn" type="PackedScene" id=1] +[ext_resource path="res://Scripts/Game.cs" type="Script" id=2] +[ext_resource path="res://Scenes/OutputContainer.tscn" type="PackedScene" id=3] +[ext_resource path="res://Scenes/OutputRow.tscn" type="PackedScene" id=4] + +[node name="Game" type="MarginContainer"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 8.0 +margin_right = -8.0 +margin_bottom = -8.0 +script = ExtResource( 2 ) +__meta__ = { +"_edit_group_": true +} +OutputRowScene = ExtResource( 4 ) + +[node name="LayoutContainer" type="VBoxContainer" parent="."] +margin_right = 1008.0 +margin_bottom = 584.0 +custom_constants/separation = 8 + +[node name="OutputContainer" parent="LayoutContainer" instance=ExtResource( 3 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_right = 1008.0 +margin_bottom = 535.0 + +[node name="InputContainer" parent="LayoutContainer" instance=ExtResource( 1 )] +anchor_right = 0.0 +margin_top = 543.0 +margin_right = 1008.0 +margin_bottom = 584.0 + +[connection signal="InputSubmitted" from="LayoutContainer/InputContainer" to="." method="OnInputSubmitted"] |
