summaryrefslogtreecommitdiff
path: root/Scenes/Game/Game.tscn
blob: 8fb8e2b1a89d464698b07262aba72a6d5a7015fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[gd_scene load_steps=6 format=3 uid="uid://4updkf321om"]

[ext_resource type="PackedScene" uid="uid://bp8kjovrt7gxk" path="res://Scenes/Terminal/Screen.tscn" id="1"]
[ext_resource type="PackedScene" uid="uid://b1pnf82wkug43" path="res://Scenes/Terminal/OutputArea.tscn" id="2"]
[ext_resource type="PackedScene" path="res://Scenes/Game/CommandInputArea.tscn" id="3"]
[ext_resource type="Script" path="res://Scripts/Game/Game.cs" id="4"]
[ext_resource type="PackedScene" uid="uid://bdpejpul8aruh" path="res://Scenes/Terminal/StatusArea.tscn" id="5"]

[node name="Game" type="Node"]
script = ExtResource("4")

[node name="Screen" parent="." instance=ExtResource("1")]

[node name="ScreenContainer" parent="Screen" index="0"]
layout_mode = 3
grow_horizontal = 2
grow_vertical = 2

[node name="TopBar" parent="Screen/ScreenContainer" index="0"]
layout_mode = 3
offset_bottom = 25.0

[node name="StatusArea" parent="Screen/ScreenContainer/TopBar" index="0" instance=ExtResource("5")]
unique_name_in_owner = true
anchors_preset = 0
anchor_right = 0.0
offset_left = 8.0
offset_right = 1144.0
offset_bottom = 25.0
grow_horizontal = 1
Title = "Adventure Title"

[node name="Content" parent="Screen/ScreenContainer" index="1"]
layout_mode = 3
offset_top = 25.0
offset_bottom = 620.0

[node name="OutputArea" parent="Screen/ScreenContainer/Content" index="0" instance=ExtResource("2")]
unique_name_in_owner = true
anchors_preset = 0
anchor_right = 0.0
anchor_bottom = 0.0
offset_left = 8.0
offset_right = 1144.0
offset_bottom = 595.0
grow_horizontal = 2
grow_vertical = 2

[node name="BottomBar" parent="Screen/ScreenContainer" index="2"]
layout_mode = 3
offset_top = 620.0

[node name="InputArea" parent="Screen/ScreenContainer/BottomBar" index="0" instance=ExtResource("3")]
unique_name_in_owner = true
anchors_preset = 0
anchor_right = 0.0
offset_left = 8.0
offset_right = 1144.0
offset_bottom = 28.0
grow_horizontal = 1

[connection signal="CommandSubmitted" from="Screen/ScreenContainer/BottomBar/InputArea" to="." method="OnCommandSubmitted"]
[connection signal="UnknownInputSubmitted" from="Screen/ScreenContainer/BottomBar/InputArea" to="." method="OnUnknownInputSubmitted"]

[editable path="Screen"]