blob: 7ea63245253ec884583a4b426a8b5be18093f5cb (
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
|
[gd_scene load_steps=6 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]
[ext_resource path="res://Scripts/Game/Game.cs" type="Script" id=4]
[ext_resource path="res://Scenes/Game/OutputBlock.tscn" type="PackedScene" id=5]
[node name="Game" type="VBoxContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
custom_constants/separation = 0
script = ExtResource( 4 )
[node name="StatusLine" parent="." instance=ExtResource( 1 )]
unique_name_in_owner = true
Title = "Adventure Title"
[node name="Output" parent="." instance=ExtResource( 2 )]
unique_name_in_owner = true
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 31.0
margin_right = 640.0
margin_bottom = 451.0
size_flags_horizontal = 3
size_flags_vertical = 3
OutputBlockScene = ExtResource( 5 )
[node name="Input" parent="." instance=ExtResource( 3 )]
unique_name_in_owner = true
anchor_right = 0.0
margin_top = 451.0
margin_right = 640.0
margin_bottom = 480.0
[connection signal="CommandSubmitted" from="Input" to="." method="OnCommandSubmitted"]
[connection signal="UnknownInputSubmitted" from="Input" to="." method="OnUnknownInputSubmitted"]
|