-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLittleBigFactory.tscn
37 lines (26 loc) · 1.48 KB
/
LittleBigFactory.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
36
37
[gd_scene load_steps=8 format=2]
[ext_resource path="res://GameCursor.tscn" type="PackedScene" id=1]
[ext_resource path="res://World.tscn" type="PackedScene" id=2]
[ext_resource path="res://UI/IntroAnimation.tscn" type="PackedScene" id=3]
[ext_resource path="res://MusicPlayer.tscn" type="PackedScene" id=4]
[ext_resource path="res://LittleBigFactory.gd" type="Script" id=5]
[ext_resource path="res://HighScore.tscn" type="PackedScene" id=6]
[ext_resource path="res://UI/Tutorial.tscn" type="PackedScene" id=7]
[node name="LittleBigFactory" type="Node"]
script = ExtResource( 5 )
[node name="World" parent="." instance=ExtResource( 2 )]
[node name="GameCursor" parent="." instance=ExtResource( 1 )]
pause_mode = 2
layer = 10
[node name="Tutorial" parent="." instance=ExtResource( 7 )]
[node name="IntroCanvas" type="CanvasLayer" parent="."]
layer = 3
[node name="MainMenu" parent="IntroCanvas" instance=ExtResource( 3 )]
[node name="HighScore" parent="IntroCanvas" instance=ExtResource( 6 )]
visible = false
[node name="MusicPlayer" parent="." instance=ExtResource( 4 )]
[connection signal="click" from="Tutorial/MainPanel/Background/Screens/TutorialScreen29/MainMenuButton" to="." method="_on_RestartGameButton_click"]
[connection signal="click" from="IntroCanvas/MainMenu/TutorialButton" to="." method="_on_TutorialButton_click"]
[connection signal="click" from="IntroCanvas/MainMenu/NewGameButton" to="." method="_on_NewGameButton_click"]
[editable path="Tutorial"]
[editable path="IntroCanvas/MainMenu"]