-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.tscn
26 lines (19 loc) · 1.07 KB
/
Main.tscn
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
[gd_scene load_steps=9 format=2]
[ext_resource path="res://props/sky/BackgroundBlueSky.tscn" type="PackedScene" id=1]
[ext_resource path="res://interface/OnScreenUI.tscn" type="PackedScene" id=2]
[ext_resource path="res://interface/Pause.tscn" type="PackedScene" id=3]
[ext_resource path="res://music/MusicPlayer.tscn" type="PackedScene" id=4]
[ext_resource path="res://Main.gd" type="Script" id=5]
[ext_resource path="res://rooms/BaseRoom.tscn" type="PackedScene" id=6]
[ext_resource path="res://rooms/ARoom.tscn" type="PackedScene" id=7]
[ext_resource path="res://rooms/BRoom.tscn" type="PackedScene" id=8]
[node name="Main" type="YSort"]
script = ExtResource( 5 )
rooms = [ ExtResource( 8 ), ExtResource( 7 ), ExtResource( 6 ) ]
grid_width = 10
grid_height = 10
[node name="UILayer" type="CanvasLayer" parent="."]
[node name="PauseScreen" parent="UILayer" instance=ExtResource( 3 )]
[node name="OnScreenUI" parent="UILayer" instance=ExtResource( 2 )]
[node name="BackgroundBlueSky" parent="." instance=ExtResource( 1 )]
[node name="MusicPlayer" parent="." instance=ExtResource( 4 )]