1
0
Fork 0
This repository has been archived on 2025-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
pacifist-jam/game/Game.tscn
2022-07-28 03:44:40 +02:00

25 lines
852 B
Text

[gd_scene load_steps=6 format=2]
[ext_resource path="res://game/ui-theme/ui_theme.tres" type="Theme" id=1]
[ext_resource path="res://level/Level.tscn" type="PackedScene" id=2]
[ext_resource path="res://game/menu/MainMenu.tscn" type="PackedScene" id=3]
[ext_resource path="res://game/loading/TransitionScreen.tscn" type="PackedScene" id=4]
[ext_resource path="res://game/Game.gd" type="Script" id=5]
[node name="Game" type="Node"]
script = ExtResource( 5 )
[node name="MusicPlayer" type="AudioStreamPlayer" parent="."]
[node name="Level" parent="." instance=ExtResource( 2 )]
[node name="UI" type="Control" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 1
theme = ExtResource( 1 )
[node name="MainMenu" parent="UI" instance=ExtResource( 3 )]
[node name="TransitionScreen" parent="UI" instance=ExtResource( 4 )]
visible = false