-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Main.tscn
44 lines (34 loc) · 1.77 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Main.gd" type="Script" id=1]
[ext_resource path="res://UI/Screens.tscn" type="PackedScene" id=2]
[ext_resource path="res://UI/HUD.tscn" type="PackedScene" id=3]
[ext_resource path="res://assets/audio/Music_Light-Puzzles.ogg" type="AudioStream" id=4]
[ext_resource path="res://UI/Background.tscn" type="PackedScene" id=5]
[ext_resource path="res://admob-lib/admob.gd" type="Script" id=6]
[node name="Main" type="Node"]
script = ExtResource( 1 )
[node name="StartPosition" type="Position2D" parent="."]
position = Vector2( 219.144, 689.962 )
[node name="Camera2D" type="Camera2D" parent="."]
position = Vector2( 215.94, 674.803 )
offset = Vector2( 0, -200 )
current = true
smoothing_enabled = true
smoothing_speed = 8.0
[node name="Screens" parent="." instance=ExtResource( 2 )]
[node name="HUD" parent="." instance=ExtResource( 3 )]
[node name="Music" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
[node name="Background" parent="." instance=ExtResource( 5 )]
[node name="MusicFade" type="Tween" parent="."]
[node name="Admob" type="Node" parent="."]
script = ExtResource( 6 )
is_real = false
banner_on_top = false
child_directed = true
[connection signal="start_game" from="Screens" to="." method="new_game"]
[connection signal="banner_failed_to_load" from="Admob" to="." method="_on_Admob_banner_failed_to_load"]
[connection signal="banner_loaded" from="Admob" to="." method="_on_Admob_banner_loaded"]
[connection signal="interstitial_closed" from="Admob" to="." method="_on_Admob_interstitial_closed"]
[connection signal="interstitial_failed_to_load" from="Admob" to="." method="_on_Admob_interstitial_failed_to_load"]
[connection signal="interstitial_loaded" from="Admob" to="." method="_on_Admob_interstitial_loaded"]