diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-09-04 13:52:41 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-09-04 13:52:41 +0200 |
| commit | 0967a4654c9fa67b5cfc19edf3cfc075bf6bde92 (patch) | |
| tree | af54db4364d6005cbfbfe7495c70f525a24edefb /Scenes/Game/Game.tscn | |
| parent | 645d1083fecf707a56b07c1fd52df4015885d9ce (diff) | |
| download | texty-0967a4654c9fa67b5cfc19edf3cfc075bf6bde92.tar.xz texty-0967a4654c9fa67b5cfc19edf3cfc075bf6bde92.zip | |
game: extract element scenes
Diffstat (limited to 'Scenes/Game/Game.tscn')
| -rw-r--r-- | Scenes/Game/Game.tscn | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Scenes/Game/Game.tscn b/Scenes/Game/Game.tscn new file mode 100644 index 0000000..7843f3a --- /dev/null +++ b/Scenes/Game/Game.tscn @@ -0,0 +1,16 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Scenes/Game/StatusLine.tscn" type="PackedScene" id=1] +[ext_resource path="res://Scenes/Game/Output.tscn" type="PackedScene" id=2] +[ext_resource path="res://Scenes/Game/Input.tscn" type="PackedScene" id=3] + +[node name="Game" type="VBoxContainer"] +anchor_right = 1.0 +anchor_bottom = 1.0 +custom_constants/separation = 0 + +[node name="StatusLine" parent="." instance=ExtResource( 1 )] + +[node name="Output" parent="." instance=ExtResource( 2 )] + +[node name="Input" parent="." instance=ExtResource( 3 )] |
