1
Fork 0
mirror of https://github.com/Steffo99/watermelonkeys-patched-ld51.git synced 2024-10-16 06:17:34 +00:00
fading-sun/Level1.tscn
Gattopandacorno c8285ad572 FINAL
2022-10-04 00:04:20 +02:00

263 lines
23 KiB
Text

[gd_scene load_steps=17 format=2]
[ext_resource path="res://light.tscn" type="PackedScene" id=1]
[ext_resource path="res://Giovanna.tscn" type="PackedScene" id=2]
[ext_resource path="res://brick_tileset.tres" type="TileSet" id=3]
[ext_resource path="res://ASSETS/Background/Layer 7.png" type="Texture" id=4]
[ext_resource path="res://ASSETS/Background/Skyline2.png" type="Texture" id=5]
[ext_resource path="res://ASSETS/Background/Skyline1.png" type="Texture" id=6]
[ext_resource path="res://My Platform.tscn" type="PackedScene" id=7]
[ext_resource path="res://ASSETS/Sunimation/Sun_0_5000ms.png" type="Texture" id=8]
[ext_resource path="res://End_Button.tscn" type="PackedScene" id=9]
[ext_resource path="res://enemies/Enemy.tscn" type="PackedScene" id=10]
[ext_resource path="res://ASSETS/sounds/suoneria_giorno.wav" type="AudioStream" id=11]
[sub_resource type="GDScript" id=3]
script/source = "extends Node2D
signal day
signal night
export(CanvasItemMaterial) var tiles_mat
onready var layer_1 = $ParallaxBackground/ParallaxLayer2
onready var layer_2 = $\"ParallaxBackground/Purple Sky\"
onready var layer_3 = $ParallaxBackground/ParallaxLayer
onready var sun_sprite = $ParallaxBackground/ParallaxLayer2/Sun
func _ready():
$TileMap.material = tiles_mat
tiles_mat.light_mode = CanvasItemMaterial.LIGHT_MODE_NORMAL
emit_signal(\"day\")
func _input(event):
if Input.is_action_just_pressed(\"quit\"):
get_tree().quit()
func _on_sun_anim_done():
var tween = create_tween()
tween.set_parallel(false)
tween.tween_property(layer_1, \"modulate\", Color.black, 0.3)
tween.tween_property(layer_2, \"modulate\", Color.black, 0.3).set_delay(0.1)
tween.tween_property(layer_3, \"modulate\", Color.black, 0.3).set_delay(0.1)
yield(tween, \"finished\")
tiles_mat.light_mode = CanvasItemMaterial.LIGHT_MODE_LIGHT_ONLY
emit_signal(\"night\")
yield(get_tree().create_timer(10.0), \"timeout\")
fade_back_in()
func fade_back_in():
sun_sprite.animate()
tiles_mat.light_mode = CanvasItemMaterial.LIGHT_MODE_NORMAL
emit_signal(\"day\")
var tween = create_tween()
tween.set_parallel(false)
tween.tween_property(layer_3, \"modulate\", Color.white, 0.3)
tween.tween_property(layer_2, \"modulate\", Color.white, 0.3).set_delay(0.1)
tween.tween_property(layer_1, \"modulate\", Color.white, 0.3).set_delay(0.1)
yield(tween, \"finished\")
func _on_DeathZone_body_entered(body):
get_tree().change_scene(\"res://Dead.tscn\")
"
[sub_resource type="CanvasItemMaterial" id=7]
[sub_resource type="GDScript" id=6]
script/source = "extends Sprite
export(String, DIR) var sun_frames_path = \"res://ASSETS/Sunimation\"
signal sun_anim_done
var frames := []
var timer := Timer.new()
func _ready():
add_child(timer)
timer.one_shot = true
var frames_names = list_files_in_directory(sun_frames_path, [\"png\"])
frames.resize(len(frames_names))
for f in frames_names:
var tokens = f.trim_prefix(\"Sun_\").trim_suffix(\"ms.png\").split(\"_\")
# print(f, \" \", tmp, \" \", tokens)
var idx = int(tokens[0])
frames[idx] = {
file = \"%s/%s\" % [sun_frames_path, f],
frame_len = float(tokens[1])/1000.0
}
# print(frames)
animate()
func animate():
for fr in frames:
texture = load(fr.file)
timer.start(fr.frame_len)
yield(timer, \"timeout\")
texture = null
emit_signal(\"sun_anim_done\")
func list_files_in_directory(path, ext_filter := [], allow_hidden := false):
var files = []
var dir = Directory.new()
dir.open(path)
dir.list_dir_begin()
var file = dir.get_next()
while file != \"\":
var is_hidden = file.begins_with(\".\")
var ext_ok = (len(ext_filter) == 0 or file.get_extension() in ext_filter)
if (not is_hidden or allow_hidden) and ext_ok:
files.append(file)
file = dir.get_next()
dir.list_dir_end()
return files
"
[sub_resource type="GDScript" id=5]
script/source = "extends Area2D
func _process(delta):
var p = owner.get_meta(\"player\")
global_position.x = p.global_position.x
"
[sub_resource type="RectangleShape2D" id=4]
extents = Vector2( 2255, 43 )
[node name="Level1" type="Node2D"]
script = SubResource( 3 )
tiles_mat = SubResource( 7 )
[node name="ParallaxBackground" type="ParallaxBackground" parent="."]
[node name="ParallaxLayer2" type="ParallaxLayer" parent="ParallaxBackground"]
motion_scale = Vector2( 0, 0 )
[node name="Skybox" type="Sprite" parent="ParallaxBackground/ParallaxLayer2"]
texture = ExtResource( 4 )
[node name="Sun" type="Sprite" parent="ParallaxBackground/ParallaxLayer2"]
position = Vector2( 0, 62 )
texture = ExtResource( 8 )
script = SubResource( 6 )
[node name="Purple Sky" type="ParallaxLayer" parent="ParallaxBackground"]
position = Vector2( 0, -90 )
motion_scale = Vector2( 0.4, 0.4 )
motion_mirroring = Vector2( 1920, 0 )
[node name="Sprite" type="Sprite" parent="ParallaxBackground/Purple Sky"]
position = Vector2( 150, 166 )
z_index = -10
texture = ExtResource( 6 )
[node name="ParallaxLayer" type="ParallaxLayer" parent="ParallaxBackground"]
position = Vector2( 1, 138 )
motion_scale = Vector2( 0.65, 0.65 )
motion_mirroring = Vector2( 1920, 0 )
[node name="Sprite" type="Sprite" parent="ParallaxBackground/ParallaxLayer"]
position = Vector2( -4, 0 )
texture = ExtResource( 5 )
[node name="light" parent="." instance=ExtResource( 1 )]
position = Vector2( 213, 172 )
__meta__ = {
"_edit_group_": true,
"_edit_horizontal_guides_": [ ]
}
[node name="light" parent="light" instance=ExtResource( 1 )]
position = Vector2( 328, -100 )
[node name="TileMap" type="TileMap" parent="."]
material = SubResource( 7 )
tile_set = ExtResource( 3 )
cell_size = Vector2( 16, 16 )
format = 1
tile_data = PoolIntArray( -524230, 18, 0, -524229, 15, 0, -524228, 15, 0, -524227, 15, 0, -524226, 15, 0, -524225, 15, 0, -524224, 15, 0, -524223, 15, 0, -524222, 20, 0, -524168, 18, 0, -524167, 15, 0, -524166, 15, 0, -524165, 15, 0, -524164, 15, 0, -524163, 3, 0, -458695, 18, 0, -458694, 0, 0, -458693, 26, 0, -458692, 26, 2, -458691, 26, 2, -458690, 26, 2, -458689, 26, 2, -458688, 26, 0, -458687, 26, 65539, -458686, 5, 0, -458632, 1610612753, 0, -458631, 1610612736, 0, -458630, 1610612736, 0, -458629, 1610612736, 0, -458628, 1610612736, 0, -458627, 1610612740, 0, -393160, 18, 0, -393159, 0, 0, -393158, 0, 0, -393157, 26, 131072, -393152, 26, 131073, -393151, 26, 131075, -393095, 1610612753, 0, -393094, 1610612736, 0, -393093, 1610612736, 0, -393092, 1610612736, 0, -393091, 1610612740, 0, -327625, 18, 0, -327624, 0, 0, -327623, 26, 65537, -327622, 26, 65538, -327621, 26, 0, -327616, 26, 131073, -327615, 26, 131075, -327558, 1610612753, 0, -327557, 1610612736, 0, -327556, 1610612736, 0, -327555, 1610612740, 0, -262089, 26, 1, -262088, 26, 2, -262087, 26, 0, -262086, 26, 196610, -262085, 26, 0, -262084, 26, 2, -262083, 26, 2, -262082, 26, 2, -262081, 26, 2, -262080, 26, 0, -262079, 26, 131075, -262021, 1610612753, 0, -262020, 1610612736, 0, -262019, 1610612740, 0, -262008, -1073741804, 0, -196544, 26, 131073, -196543, 26, 131075, -196484, 1610612753, 0, -196483, 26, 65537, -196482, 26, 65538, -196481, 26, 65538, -196480, 26, 65538, -196479, 26, 65538, -196478, 26, 65538, -196477, 26, 65538, -196476, 26, 65538, -196475, 26, 65538, -196474, 26, 65539, -196468, -1073741804, 0, -131008, 26, 131073, -131007, 26, 131075, -130947, 26, 196609, -130946, 26, 196610, -130945, 26, 196610, -130944, 26, 196610, -130943, 26, 196610, -130942, 26, 0, -130941, 26, 196610, -130940, 26, 196610, -130939, 26, 196610, -130938, 26, 196611, -130918, 18, 0, -130917, 17, 0, -65488, 26, 65537, -65487, 26, 65538, -65486, 26, 65538, -65485, 26, 65538, -65484, 26, 65538, -65483, 26, 65538, -65482, 26, 65538, -65481, 26, 65538, -65480, 26, 65538, -65479, 26, 65538, -65478, 26, 65538, -65477, 26, 65538, -65476, 26, 65538, -65475, 26, 65539, -65472, 26, 131073, -65471, 26, 131075, -65406, 26, 131072, -65382, 1610612753, 0, -65381, 26, 1, -65380, 26, 2, -65379, 26, 2, -65378, 26, 2, -65377, 26, 2, -65376, 26, 2, -65375, 26, 0, -65374, 26, 65539, 48, 26, 196609, 49, 26, 196610, 50, 26, 196610, 51, 26, 196610, 52, 26, 196610, 53, 26, 196610, 54, 26, 196610, 55, 26, 196610, 56, 26, 196610, 57, 26, 196610, 58, 26, 196610, 59, 26, 196610, 60, 26, 196610, 61, 26, 196611, 64, 26, 131073, 65, 26, 131075, 128, 26, 65536, 130, 26, 131072, 144, -1073741804, 0, 145, -1073741804, 0, 155, 1610612753, 0, 156, 1610612754, 0, 161, 26, 131073, 162, 26, 131075, 65600, 26, 131073, 65601, 26, 131075, 65664, 26, 131072, 65666, 26, 131072, 65690, 1610612762, 0, 65697, 26, 131073, 65698, 26, 131075, 131136, 26, 131073, 131137, 26, 131075, 131200, 26, 131072, 131202, 26, 131072, 131233, 26, 131073, 131234, 26, 131075, 196672, 26, 131073, 196673, 26, 131075, 196724, 26, 1, 196725, 26, 0, 196726, 26, 2, 196727, 26, 2, 196728, 26, 2, 196729, 26, 2, 196730, 26, 2, 196731, 26, 2, 196732, 26, 2, 196733, 26, 3, 196736, 26, 131072, 196738, 26, 196608, 196757, -1073741804, 0, 196758, -1073741804, 0, 196769, 26, 0, 196770, 26, 0, 196771, 26, 0, 196772, 17, 0, 262199, 26, 1, 262200, 26, 2, 262201, 26, 2, 262202, 26, 2, 262203, 26, 2, 262204, 26, 2, 262205, 26, 2, 262206, 26, 2, 262207, 26, 2, 262208, 26, 0, 262209, 26, 196611, 262261, 26, 131072, 262272, 26, 131072, 262273, -1610612723, 0, 262274, -1610612723, 0, 262275, -1610612723, 0, 262276, -1610612723, 0, 262277, -1610612723, 0, 262278, -1610612723, 0, 262279, -1610612723, 0, 262280, -1610612723, 0, 262281, 1610612742, 0, 262305, 26, 131072, 262307, 26, 0, 262308, 26, 0, 327744, 1610612762, 131072, 327797, 26, 131072, 327808, 26, 131072, 327809, -1073741824, 0, 327810, -1073741824, 0, 327811, -1073741824, 0, 327812, -1073741824, 0, 327813, -1073741824, 0, 327814, -1073741824, 0, 327815, -1073741824, 0, 327816, -1073741824, 0, 327817, -1610612719, 0, 327841, 26, 131072, 327844, 26, 131072, 393245, 1, 0, 393246, 15, 0, 393247, 15, 0, 393248, 15, 0, 393249, 15, 0, 393250, 15, 0, 393251, 15, 0, 393252, 17, 0, 393280, 1610612762, 131072, 393286, 1, 0, 393287, 2, 0, 393288, 2, 0, 393289, 2, 0, 393290, 2, 0, 393291, 2, 0, 393292, 3, 0, 393333, 26, 131072, 393337, 26, 1, 393338, 26, 2, 393339, 26, 2, 393340, 26, 2, 393341, 26, 2, 393342, 26, 3, 393344, 26, 131072, 393345, -1073741824, 0, 393346, -1073741824, 0, 393347, -1073741824, 0, 393348, -1073741824, 0, 393349, -1073741824, 0, 393350, -1073741824, 0, 393351, -1073741824, 0, 393352, -1610612719, 0, 393377, 26, 0, 393378, 26, 65539, 393380, 26, 131072, 524283, 26, 65537, 524284, 26, 65538, 524285, 26, 65538, 524286, 26, 65538, 524287, 26, 65539, 458781, 4, 0, 458782, 10, 0, 458783, 9, 0, 458784, 10, 0, 458785, 9, 0, 458786, 10, 0, 458787, 9, 0, 458788, 16, 0, 458789, 17, 0, 458816, 1610612762, 131072, 458822, 1610612753, 0, 458823, 1610612736, 0, 458824, 19, 0, 458825, 1610612759, 0, 458826, 19, 0, 458827, 1610612736, 0, 458828, 1610612754, 0, 458869, 26, 131072, 458880, 26, 131072, 458881, -1073741824, 0, 458882, -1073741824, 0, 458883, -1073741824, 0, 458884, -1073741824, 0, 458885, -1073741824, 0, 458886, -1073741824, 0, 458887, -1610612719, 0, 458907, -1073741804, 0, 458908, -1073741804, 0, 458913, 26, 131073, 458914, 26, 131075, 458916, 26, 131072, 458917, 17, 0, 589818, 26, 65537, 589819, 26, 0, 589820, 26, 131074, 589821, 26, 131074, 589822, 26, 131074, 589823, 26, 0, 524288, 26, 65539, 524317, 19, 0, 524319, 19, 0, 524321, 19, 0, 524323, 4, 0, 524324, 10, 0, 524325, 16, 0, 524326, 17, 0, 524338, 26, 1, 524339, 26, 2, 524340, 26, 2, 524341, 26, 2, 524342, 26, 2, 524343, 26, 2, 524344, 26, 2, 524345, 26, 3, 524352, 1610612762, 131072, 524355, 1610612762, 0, 524356, 1610612762, 2, 524357, 1610612762, 0, 524359, 1610612753, 0, 524360, 19, 0, 524362, 19, 0, 524363, 1610612754, 0, 524364, 18, 0, 524365, 2, 0, 524366, 2, 0, 524367, 17, 0, 524405, 26, 131072, 524416, 26, 131072, 524417, -1073741824, 0, 524418, -1073741824, 0, 524419, -1073741824, 0, 524420, -1073741824, 0, 524421, -1073741824, 0, 524422, -1610612719, 0, 524443, -1073741804, 0, 524444, -1073741804, 0, 524449, 26, 131073, 524450, 26, 131075, 524452, 26, 0, 524453, 26, 2, 524454, 26, 2, 524455, 26, 0, 655353, 26, 0, 655354, 26, 0, 655355, 26, 196610, 655356, 26, 196610, 655357, 26, 196610, 655358, 26, 196610, 655359, 26, 196610, 589824, 26, 0, 589825, 26, 0, 589853, 19, 0, 589855, 19, 0, 589857, 19, 0, 589859, 19, 0, 589861, 13, 0, 589862, 16, 0, 589863, 17, 0, 589888, 1610612762, 131072, 589891, 1610612762, 131072, 589893, 1610612762, 131072, 589896, 19, 0, 589898, 19, 0, 589899, 18, 0, 589900, 0, 0, 589901, 7, 0, 589902, 7, 0, 589903, 9, 0, 589904, 17, 0, 589941, 26, 131072, 589952, 26, 131072, 589953, -1073741824, 0, 589954, -1073741824, 0, 589955, -1073741824, 0, 589956, -1073741824, 0, 589957, -1610612719, 0, 589974, -1073741804, 0, 589975, -1073741804, 0, 589985, 26, 131073, 589986, 26, 131075, 589988, 26, 196608, 589991, 26, 131072, 720888, 26, 1, 720889, 26, 0, 720890, 1, 0, 720891, 2, 0, 720892, 2, 0, 720893, 2, 0, 720894, 2, 0, 720895, 2, 0, 655360, 3, 0, 655361, 26, 0, 655362, 26, 3, 655389, 19, 0, 655391, 19, 0, 655393, 19, 0, 655395, 19, 0, 655397, 4, 0, 655398, 10, 0, 655399, 16, 0, 655400, 17, 0, 655424, 1610612762, 131072, 655427, 1610612762, 131072, 655429, 1610612762, 196608, 655432, 19, 0, 655434, 19, 0, 655435, 0, 0, 655436, 5, 0, 655439, 4, 0, 655440, 9, 0, 655441, 17, 0, 655477, 26, 0, 655478, 26, 2, 655479, 26, 2, 655480, 26, 2, 655481, 26, 2, 655482, 26, 2, 655483, 26, 0, 655488, 26, 131072, 655489, -1073741824, 0, 655490, -1073741824, 0, 655491, -1073741824, 0, 655492, -1610612719, 0, 655510, -1073741804, 0, 655511, -1073741804, 0, 655521, 26, 131073, 655522, 26, 131075, 655527, 26, 131072, 655555, 18, 0, 655556, 3, 0, 655557, 26, 0, 655558, 1, 0, 655559, 17, 0, 786426, 4, 0, 786431, 16, 0, 720896, 12, 0, 720925, 19, 0, 720927, 19, 0, 720929, 19, 0, 720931, 19, 0, 720933, 19, 0, 720935, 13, 0, 720936, 10, 0, 720937, 17, 0, 720941, 25, 0, 720942, 2, 0, 720943, 24, 0, 720960, 1610612762, 131072, 720963, 1610612762, 131072, 720968, 19, 0, 720970, 19, 0, 720971, 0, 0, 720972, 8, 0, 720975, 6, 0, 720976, 9, 0, 720977, 9, 0, 720978, 17, 0, 721019, 26, 131072, 721024, 26, 131072, 721025, -1073741824, 0, 721026, -1073741824, 0, 721027, -1610612719, 0, 721040, -1073741804, 0, 721041, -1073741804, 0, 721057, 26, 131073, 721058, 26, 131075, 721059, 17, 0, 721063, 26, 131072, 721090, 18, 0, 721091, 0, 0, 721092, 5, 0, 721094, 13, 0, 721095, 0, 0, 721096, 17, 0, 851962, 4, 0, 851963, 3, 0, 851966, 1, 0, 851967, 16, 0, 786432, 12, 0, 786442, 18, 0, 786443, 1, 0, 786444, 2, 0, 786445, 2, 0, 786446, 2, 0, 786447, 2, 0, 786448, 3, 0, 786461, 19, 0, 786463, 19, 0, 786465, 19, 0, 786467, 19, 0, 786469, 19, 0, 786471, 19, 0, 786473, 19, 0, 786478, 19, 0, 786496, 1610612762, 196608, 786499, 1610612762, 131072, 786504, 19, 0, 786506, 19, 0, 786507, 5, 0, 786512, 4, 0, 786513, 9, 0, 786514, 9, 0, 786515, 17, 0, 786555, 26, 131072, 786560, 26, 131072, 786561, -1073741824, 0, 786562, -1610612719, 0, 786576, -1073741804, 0, 786577, -1073741804, 0, 786593, 26, 0, 786594, 26, 0, 786595, 26, 0, 786596, 26, 65539, 786599, 26, 131072, 786625, 18, 0, 786626, 0, 0, 786627, 0, 0, 786628, 5, 0, 786629, 26, 0, 786630, 13, 0, 786631, 0, 0, 786632, 0, 0, 786633, 17, 0, 917498, 13, 0, 917499, 0, 0, 917500, 16, 0, 917501, 16, 0, 917502, 0, 0, 917503, 0, 0, 851968, 12, 0, 851977, 18, 0, 851978, 16, 0, 851979, 6, 0, 851980, 7, 0, 851981, 7, 0, 851982, 7, 0, 851983, 7, 0, 851984, 8, 0, 851997, 19, 0, 851999, 19, 0, 852001, 19, 0, 852003, 19, 0, 852005, 19, 0, 852007, 19, 0, 852009, 19, 0, 852014, 19, 0, 852035, 1610612762, 131072, 852040, 19, 0, 852042, 19, 0, 852043, 5, 0, 852048, 4, 0, 852049, 9, 0, 852050, 9, 0, 852051, 9, 0, 852052, 17, 0, 852091, 26, 131072, 852096, 26, 196608, 852097, -1610612719, 0, 852106, -1073741804, 0, 852107, -1073741804, 0, 852108, -1073741804, 0, 852129, 26, 131072, 852131, 26, 131073, 852132, 26, 131075, 852133, 17, 0, 852135, 26, 131072, 852160, 18, 0, 852161, 0, 0, 852162, 0, 0, 852163, 0, 0, 852164, 5, 0, 852166, 13, 0, 852167, 0, 0, 852168, 0, 0, 852169, 0, 0, 852170, 17, 0, 983034, 13, 0, 983035, 0, 0, 983038, 0, 0, 983039, 0, 0, 917504, 12, 0, 917512, 18, 0, 917513, 16, 0, 917514, 0, 0, 917515, 5, 0, 917533, 19, 0, 917535, 19, 0, 917537, 19, 0, 917539, 19, 0, 917541, 19, 0, 917543, 19, 0, 917545, 19, 0, 917550, 19, 0, 917571, 1610612762, 131072, 917576, 19, 0, 917578, 19, 0, 917579, 0, 0, 917580, 3, 0, 917583, 1, 0, 917584, 9, 0, 917585, 9, 0, 917586, 9, 0, 917587, 9, 0, 917588, 9, 0, 917589, 17, 0, 917627, 26, 131072, 917642, -1073741804, 0, 917643, -1073741804, 0, 917644, -1073741804, 0, 917665, 26, 131072, 917667, 26, 0, 917668, 26, 0, 917669, 26, 0, 917671, 26, 131072, 917695, 18, 0, 917696, 0, 0, 917697, 0, 0, 917698, 0, 0, 917699, 0, 0, 917700, 5, 0, 917701, 26, 0, 917702, 13, 0, 917703, 0, 0, 917704, 0, 0, 917705, 0, 0, 917706, 0, 0, 917707, 17, 0, 1048570, 13, 0, 1048571, 0, 0, 1048574, 0, 0, 1048575, 0, 0, 983040, 12, 0, 983047, 18, 0, 983048, 16, 0, 983049, 0, 0, 983069, 19, 0, 983071, 19, 0, 983073, 19, 0, 983075, 19, 0, 983077, 19, 0, 983079, 19, 0, 983081, 19, 0, 983086, 19, 0, 983107, 1610612762, 196608, 983112, 19, 0, 983114, 19, 0, 983115, 0, 0, 983116, 5, 0, 983119, 4, 0, 983120, 9, 0, 983121, 9, 0, 983122, 9, 0, 983123, 9, 0, 983124, 9, 0, 983125, 9, 0, 983126, 17, 0, 983163, 26, 196608, 983201, 26, 196608, 983203, 26, 196608, 983205, 26, 196608, 983207, 26, 196608, 983208, 17, 0, 983230, 18, 0, 983231, 0, 0, 983232, 0, 0, 983233, 0, 0, 983234, 0, 0, 983235, 0, 0, 983236, 5, 0, 983238, 13, 0, 983239, 0, 0, 983240, 0, 0, 983241, 0, 0, 983242, 0, 0, 983243, 0, 0, 983244, 17, 0, 1114106, 13, 0, 1114107, 0, 0, 1114108, 17, 0, 1114109, 18, 0, 1114110, 0, 0, 1114111, 16, 0, 1048576, 14, 0, 1048577, 2, 0, 1048578, 2, 0, 1048579, 2, 0, 1048580, 2, 0, 1048581, 2, 0, 1048582, 2, 0, 1048583, 2, 0, 1048584, 2, 0, 1048585, 2, 0, 1048605, 19, 0, 1048607, 19, 0, 1048609, 19, 0, 1048611, 19, 0, 1048613, 19, 0, 1048615, 19, 0, 1048617, 19, 0, 1048622, 19, 0, 1048623, 23, 0, 1048624, 23, 0, 1048625, 23, 0, 1048626, 23, 0, 1048627, 23, 0, 1048628, 23, 0, 1048629, 23, 0, 1048630, 23, 0, 1048631, 23, 0, 1048632, 23, 0, 1048633, 23, 0, 1048634, 23, 0, 1048635, 23, 0, 1048636, 23, 0, 1048637, 23, 0, 1048638, 23, 0, 1048639, 23, 0, 1048640, 23, 0, 1048641, 23, 0, 1048642, 23, 0, 1048643, 23, 0, 1048648, 23, 0, 1048649, 23, 0, 1048650, 23, 0, 1048651, 23, 0, 1048652, 23, 0, 1048653, 23, 0, 1048654, 23, 0, 1048655, 23, 0, 1048656, 23, 0, 1048657, 23, 0, 1048658, 23, 0, 1048659, 23, 0, 1048660, 23, 0, 1048661, 23, 0, 1048662, 23, 0, 1048663, 23, 0, 1048664, 23, 0, 1048665, 23, 0, 1048666, 23, 0, 1048667, 23, 0, 1048668, 23, 0, 1048669, 23, 0, 1048670, 23, 0, 1048671, 23, 0, 1048672, 23, 0, 1048673, 23, 0, 1048674, 23, 0, 1048675, 23, 0, 1048676, 23, 0, 1048677, 23, 0, 1048678, 23, 0, 1048679, 23, 0, 1048680, 23, 0, 1048681, 23, 0, 1048682, 23, 0, 1048683, 23, 0, 1048684, 23, 0, 1048685, 23, 0, 1048686, 23, 0, 1048687, 23, 0, 1048688, 23, 0, 1048689, 23, 0, 1048690, 23, 0, 1048691, 23, 0, 1048692, 23, 0, 1048693, 23, 0, 1048694, 23, 0, 1048695, 23, 0, 1048696, 23, 0, 1048697, 23, 0, 1048698, 23, 0, 1048699, 23, 0, 1048700, 23, 0, 1048701, 23, 0, 1048702, 23, 0, 1048703, 23, 0, 1048704, 23, 0, 1048705, 23, 0, 1048706, 23, 0, 1048707, 23, 0, 1048708, 23, 0, 1048709, 23, 0, 1048710, 23, 0, 1048711, 23, 0, 1048712, 23, 0, 1048713, 23, 0, 1048714, 23, 0, 1048715, 23, 0, 1048716, 23, 0, 1048717, 23, 0, 1048718, 23, 0, 1048719, 23, 0, 1048720, 23, 0, 1048721, 23, 0, 1048722, 23, 0, 1048723, 23, 0, 1048724, 23, 0, 1048725, 23, 0, 1048726, 23, 0, 1048727, 23, 0, 1048728, 23, 0, 1048729, 23, 0, 1048730, 23, 0, 1048731, 23, 0, 1048732, 23, 0, 1048733, 23, 0, 1048734, 23, 0, 1048735, 23, 0, 1048736, 23, 0, 1048737, 23, 0, 1048738, 23, 0, 1048739, 23, 0, 1048740, 23, 0, 1048741, 23, 0, 1048742, 23, 0, 1048743, 23, 0, 1048744, 23, 0, 1048745, 23, 0, 1048746, 23, 0, 1048747, 23, 0, 1048748, 23, 0, 1048749, 23, 0, 1048750, 23, 0, 1048751, 23, 0, 1048752, 23, 0, 1048753, 23, 0, 1048754, 23, 0, 1048755, 23, 0, 1048756, 23, 0, 1048757, 23, 0, 1048758, 23, 0, 1048759, 23, 0, 1048760, 23, 0, 1048761, 23, 0, 1048762, 23, 0, 1048763, 23, 0, 1048764, 23, 0, 1048765, 23, 0, 1048766, 23, 0, 1048767, 23, 0, 1048768, 23, 0, 1048769, 23, 0, 1048770, 23, 0, 1048771, 23, 0, 1048772, 23, 0, 1048773, 23, 0, 1048774, 23, 0, 1048775, 23, 0, 1048776, 23, 0, 1048777, 23, 0, 1048778, 23, 0, 1048779, 23, 0, 1048780, 23, 0, 1048781, 23, 0, 1048782, 23, 0, 1048783, 23, 0, 1048784, 23, 0, 1048785, 23, 0, 1048786, 23, 0, 1048787, 23, 0, 1048788, 23, 0, 1048789, 23, 0, 1048790, 23, 0, 1048791, 23, 0, 1048792, 23, 0, 1048793, 23, 0, 1048794, 23, 0, 1048795, 23, 0, 1048796, 23, 0, 1048797, 23, 0, 1048798, 23, 0, 1048799, 23, 0, 1048800, 23, 0, 1048801, 23, 0, 1048802, 23, 0, 1048803, 23, 0, 1048804, 23, 0, 1048805, 23, 0, 1048806, 23, 0, 1048807, 23, 0, 1048808, 23, 0, 1048809, 23, 0, 1048810, 23, 0, 1048811, 23, 0, 1048812, 23, 0, 1048813, 23, 0, 1048814, 23, 0, 1048815, 23, 0, 1048816, 23, 0, 1048817, 23, 0, 1048818, 23, 0, 1048819, 23, 0, 1048820, 23, 0, 1048821, 23, 0, 1048822, 23, 0, 1048823, 23, 0, 1048824, 23, 0, 1048825, 23, 0, 1048826, 23, 0, 1048827, 23, 0, 1048828, 23, 0, 1048829, 23, 0, 1114158, 19, 0 )
[node name="DeathZone" type="Area2D" parent="."]
position = Vector2( 1, 328 )
script = SubResource( 5 )
__meta__ = {
"_edit_group_": true
}
[node name="CollisionShape2D" type="CollisionShape2D" parent="DeathZone"]
position = Vector2( 1771, 12 )
shape = SubResource( 4 )
[node name="Player" parent="." instance=ExtResource( 2 )]
position = Vector2( 73, 39 )
[node name="My Platform" parent="." instance=ExtResource( 7 )]
position = Vector2( 698, 17 )
[node name="My Platform2" parent="." instance=ExtResource( 7 )]
position = Vector2( 406, 118 )
[node name="My Platform3" parent="." instance=ExtResource( 7 )]
position = Vector2( 693, 124 )
[node name="My Platform4" parent="." instance=ExtResource( 7 )]
position = Vector2( 309, 168 )
[node name="My Platform5" parent="." instance=ExtResource( 7 )]
position = Vector2( 1351, 122 )
[node name="My Platform6" parent="." instance=ExtResource( 7 )]
position = Vector2( 1455, 122 )
[node name="My Platform7" parent="." instance=ExtResource( 7 )]
position = Vector2( 1559, 122 )
[node name="My Platform8" parent="." instance=ExtResource( 7 )]
position = Vector2( 1693, 122 )
[node name="My Platform9" parent="." instance=ExtResource( 7 )]
position = Vector2( 1804, 74 )
[node name="Ending" parent="." instance=ExtResource( 9 )]
position = Vector2( 3160, 141 )
z_index = -1
[node name="light2" parent="." instance=ExtResource( 1 )]
position = Vector2( 1177, 66 )
[node name="light" parent="light2" instance=ExtResource( 1 )]
position = Vector2( 739, 163 )
[node name="light3" parent="." instance=ExtResource( 1 )]
position = Vector2( 2085, -76 )
[node name="light4" parent="." instance=ExtResource( 1 )]
position = Vector2( 3012, 237 )
[node name="Enemy" parent="." instance=ExtResource( 10 )]
position = Vector2( 631, 5 )
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 11 )
autoplay = true
[connection signal="sun_anim_done" from="ParallaxBackground/ParallaxLayer2/Sun" to="." method="_on_sun_anim_done"]
[connection signal="body_entered" from="DeathZone" to="." method="_on_DeathZone_body_entered"]