blob: 63883453d40bb49687c0ca8d09727dafad133b55 (
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
|
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Scenes/Terminal/Screen.tscn" type="PackedScene" id=1]
[ext_resource path="res://Scenes/Terminal/OutputArea.tscn" type="PackedScene" id=2]
[ext_resource path="res://Scenes/Game/CommandInputArea.tscn" type="PackedScene" id=3]
[ext_resource path="res://Scripts/Game/Game.cs" type="Script" id=4]
[ext_resource path="res://Scenes/Terminal/StatusArea.tscn" type="PackedScene" id=5]
[ext_resource path="res://Scenes/Terminal/OutputBlock.tscn" type="PackedScene" id=6]
[node name="Game" type="Node"]
script = ExtResource( 4 )
[node name="Screen" parent="." instance=ExtResource( 1 )]
[node name="TopBar" parent="Screen/ScreenContainer" index="0"]
margin_right = 800.0
margin_bottom = 27.0
[node name="StatusArea" parent="Screen/ScreenContainer/TopBar" index="0" instance=ExtResource( 5 )]
unique_name_in_owner = true
margin_right = 800.0
Title = "Adventure Title"
[node name="Content" parent="Screen/ScreenContainer" index="1"]
margin_top = 27.0
margin_right = 800.0
margin_bottom = 575.0
[node name="OutputArea" parent="Screen/ScreenContainer/Content" index="0" instance=ExtResource( 2 )]
unique_name_in_owner = true
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 800.0
margin_bottom = 548.0
OutputBlockScene = ExtResource( 6 )
[node name="BottomBar" parent="Screen/ScreenContainer" index="2"]
margin_top = 575.0
margin_right = 800.0
margin_bottom = 600.0
[node name="InputArea" parent="Screen/ScreenContainer/BottomBar" index="0" instance=ExtResource( 3 )]
unique_name_in_owner = true
margin_right = 800.0
[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"]
|