-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGame.tscn
35 lines (27 loc) · 1.22 KB
/
Game.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
27
28
29
30
31
32
33
34
35
[gd_scene load_steps=8 format=2]
[ext_resource path="res://Menus/Main.tscn" type="PackedScene" id=1]
[ext_resource path="res://Game.gd" type="Script" id=2]
[ext_resource path="res://background/assets/kitchen.jpg" type="Texture" id=3]
[ext_resource path="res://resources/audio/menu_select.mp3" type="AudioStream" id=4]
[ext_resource path="res://resources/audio/menu_navigate.mp3" type="AudioStream" id=5]
[ext_resource path="res://resources/audio/char_select.mp3" type="AudioStream" id=6]
[ext_resource path="res://resources/audio/battle.mp3" type="AudioStream" id=7]
[node name="Game" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 2 )
[node name="kitcken" type="TextureRect" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
texture = ExtResource( 3 )
expand = true
[node name="menu_navigate" type="AudioStreamPlayer" parent="kitcken"]
stream = ExtResource( 5 )
[node name="menu_select" type="AudioStreamPlayer" parent="kitcken"]
stream = ExtResource( 4 )
[node name="menu_music" type="AudioStreamPlayer" parent="kitcken"]
stream = ExtResource( 6 )
autoplay = true
[node name="game_music" type="AudioStreamPlayer" parent="kitcken"]
stream = ExtResource( 7 )
[node name="Root" parent="." instance=ExtResource( 1 )]