mirror of
https://github.com/HarmonyHoney/tiny_crate.git
synced 2026-01-23 02:34:53 +00:00
Blink.gd to now blink all cursors! (-;
Save slots are now working much better! sub-menu for erase confirmation ~ if Wipe.is_wipe: optimization for input calls! also is_wipe = false only when is_reverse = true, so after a full in and out cycle!
This commit is contained in:
parent
a3ed3e3f45
commit
8d0c40c1be
30 changed files with 717 additions and 277 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 225 B After Width: | Height: | Size: 268 B |
|
|
@ -6,7 +6,7 @@ onready var menu_list : Label = $Center/Paused/List
|
|||
onready var node_cursor : ColorRect = $Center/Paused/Cursor
|
||||
|
||||
var cursor := 0
|
||||
var menu_items := ["go", "redo", "stages"]
|
||||
var menu_items := ["go", "redo", "map"]
|
||||
|
||||
var timer := 0.1 # prevent input overlap
|
||||
var clock := 0.0
|
||||
|
|
@ -30,7 +30,7 @@ func _physics_process(delta):
|
|||
get_tree().paused = false
|
||||
|
||||
func _input(event):
|
||||
if clock == 0 and Shared.is_in_game:
|
||||
if clock == 0 and Shared.is_in_game and !Wipe.is_wipe:
|
||||
if event.is_action_pressed("pause"):
|
||||
toggle_pause()
|
||||
if is_paused:
|
||||
|
|
@ -84,7 +84,7 @@ func select():
|
|||
Shared.wipe_scene()
|
||||
toggle_pause()
|
||||
Audio.play("menu_reset", 0.9, 1.1)
|
||||
"stages":
|
||||
"map":
|
||||
Shared.wipe_scene(Shared.level_select_path)
|
||||
toggle_pause()
|
||||
Audio.play("menu_exit", 0.9, 1.1)
|
||||
|
|
|
|||
|
|
@ -1,17 +1,20 @@
|
|||
[gd_scene load_steps=7 format=2]
|
||||
[gd_scene load_steps=8 format=2]
|
||||
|
||||
[ext_resource path="res://media/font/QuinqueFive.ttf" type="DynamicFontData" id=1]
|
||||
[ext_resource path="res://media/image/9slice.png" type="Texture" id=2]
|
||||
[ext_resource path="res://src/autoload/Pause.gd" type="Script" id=3]
|
||||
[ext_resource path="res://src/menu/Blink.gd" type="Script" id=4]
|
||||
[ext_resource path="res://media/font/ThaleahFat.ttf" type="DynamicFontData" id=5]
|
||||
|
||||
[sub_resource type="DynamicFont" id=2]
|
||||
size = 5
|
||||
outline_color = Color( 0, 0, 0, 1 )
|
||||
extra_spacing_top = -1
|
||||
extra_spacing_bottom = -1
|
||||
font_data = ExtResource( 1 )
|
||||
|
||||
[sub_resource type="DynamicFont" id=3]
|
||||
outline_color = Color( 0, 0, 0, 1 )
|
||||
extra_spacing_top = -4
|
||||
extra_spacing_bottom = -4
|
||||
font_data = ExtResource( 5 )
|
||||
|
|
@ -47,6 +50,7 @@ margin_top = 17.0
|
|||
margin_right = 54.0
|
||||
margin_bottom = 24.0
|
||||
color = Color( 1, 0, 0.301961, 1 )
|
||||
script = ExtResource( 4 )
|
||||
|
||||
[node name="List" type="Label" parent="Center/Paused"]
|
||||
margin_left = 1.0
|
||||
|
|
@ -54,9 +58,9 @@ margin_top = 18.0
|
|||
margin_right = 54.0
|
||||
margin_bottom = 47.0
|
||||
custom_fonts/font = SubResource( 2 )
|
||||
text = "resume
|
||||
reset
|
||||
exit"
|
||||
text = "go
|
||||
redo
|
||||
map"
|
||||
align = 1
|
||||
|
||||
[node name="Header" type="Label" parent="Center/Paused"]
|
||||
|
|
|
|||
|
|
@ -22,15 +22,19 @@ var credits_path := "res://src/menu/credits.tscn"
|
|||
var splash_path := "res://src/menu/splash.tscn"
|
||||
var creator_path := "res://src/menu/Creator.tscn"
|
||||
var scene_path := level_select_path
|
||||
var scene_last := scene_path
|
||||
|
||||
var save_data := {0: {}, 1: {}, 2: {}}
|
||||
var save_slot := 0
|
||||
var last_slot = -1
|
||||
var save_maps := {}
|
||||
var save_path := "user://save/"
|
||||
var save_filename := "box.save"
|
||||
var scene_dict := {}
|
||||
var replays := {}
|
||||
var is_save := false
|
||||
var last_menu := "main"
|
||||
var last_cursor := 0
|
||||
|
||||
var window_scale := 1
|
||||
var view_size := Vector2(228, 128)
|
||||
|
|
@ -128,9 +132,9 @@ func _physics_process(delta):
|
|||
|
||||
func wipe_scene(arg := scene_path, timer := 0.0):
|
||||
if timer > 0.0: yield(get_tree().create_timer(timer), "timeout")
|
||||
scene_last = scene_path
|
||||
scene_path = arg
|
||||
Wipe.start()
|
||||
Pause.set_process_input(false)
|
||||
|
||||
func wipe_quit():
|
||||
is_quit = true
|
||||
|
|
@ -164,7 +168,6 @@ func change_map():
|
|||
for i in ghosts:
|
||||
i.visible = false
|
||||
|
||||
Pause.set_process_input(true)
|
||||
is_note = false
|
||||
UI.notes.visible = is_level_select
|
||||
UI.notes_label.text = str(count_notes)
|
||||
|
|
@ -195,6 +198,9 @@ func change_map():
|
|||
UI.keys(true, true, true, true)
|
||||
TouchScreen.turn_arrows(false)
|
||||
TouchScreen.show_keys(true, true, true, true)
|
||||
|
||||
last_menu = "open"
|
||||
last_cursor = 0
|
||||
elif scene_path == main_menu_path:
|
||||
UI.keys(true, true, false)
|
||||
TouchScreen.turn_arrows(true)
|
||||
|
|
@ -232,6 +238,9 @@ func save():
|
|||
|
||||
save_file(save_path + str(save_slot) + "/" + save_filename, JSON.print(data, "\t"))
|
||||
|
||||
func delete_slot(arg := 0):
|
||||
save_file(save_path + str(save_slot) + "/" + save_filename, "")
|
||||
|
||||
func save_replays(arg := replay_map):
|
||||
save_file(save_path + str(save_slot) + "/" + arg + ".save", JSON.print(replays[arg], "\t"))
|
||||
|
||||
|
|
@ -249,7 +258,11 @@ func load_save(_slot = save_slot, _dict := {}):
|
|||
|
||||
save_data[save_slot] = {}
|
||||
var s = save_data[save_slot]
|
||||
|
||||
username = generate_username()
|
||||
player_colors = pick_player_colors()
|
||||
save_maps = {}
|
||||
|
||||
if _dict.empty():
|
||||
var l = load_file(save_string)
|
||||
if l: _dict = JSON.parse(l).result
|
||||
|
|
@ -366,6 +379,8 @@ func die():
|
|||
Leaderboard.submit_score("death", 1, map_name)
|
||||
print("you died")
|
||||
|
||||
func pick_player_colors():
|
||||
return preset_palettes[randi() % preset_palettes.size()]
|
||||
|
||||
# look into a folder and return a list of filenames without file extension
|
||||
func dir_list(path : String):
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@ func start(_reverse = false):
|
|||
Audio.play("menu_wipe")
|
||||
|
||||
func stop():
|
||||
is_wipe = false
|
||||
if is_reverse:
|
||||
is_wipe = false
|
||||
image.visible = false
|
||||
else:
|
||||
for i in 2:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=20 format=2]
|
||||
[gd_scene load_steps=21 format=2]
|
||||
|
||||
[ext_resource path="res://src/stage/SolidTileMap.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://src/actor/Exit.tscn" type="PackedScene" id=2]
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
[ext_resource path="res://src/stage/SpikeTileMap.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://src/actor/Player.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://src/stage/Stage.gd" type="Script" id=7]
|
||||
[ext_resource path="res://media/font/m6x11.tres" type="DynamicFont" id=8]
|
||||
[ext_resource path="res://media/font/ExpressionPro.ttf" type="DynamicFontData" id=8]
|
||||
[ext_resource path="res://media/image/btn.png" type="Texture" id=9]
|
||||
[ext_resource path="res://src/menu/hide_on_level_select.gd" type="Script" id=10]
|
||||
[ext_resource path="res://src/stage/ObscureMap.tscn" type="PackedScene" id=11]
|
||||
|
|
@ -149,6 +149,11 @@
|
|||
2/shapes = [ ]
|
||||
2/z_index = 0
|
||||
|
||||
[sub_resource type="DynamicFont" id=4]
|
||||
extra_spacing_top = -3
|
||||
extra_spacing_bottom = -3
|
||||
font_data = ExtResource( 8 )
|
||||
|
||||
[node name="Stage" type="Node2D"]
|
||||
script = ExtResource( 7 )
|
||||
palette = 0
|
||||
|
|
@ -166,7 +171,7 @@ tile_data = PoolIntArray( -393212, 5, 2, -393211, 536870917, 0, -393210, -161061
|
|||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 11 )]
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -458766, 536870912, 0, -458765, 536870912, 0, -458764, 536870912, 0, -458763, 536870912, 0, -458762, 536870912, 0, -458761, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -458757, 536870912, 0, -458756, 536870912, 0, -458755, 536870912, 0, -458754, 536870912, 0, -458753, 536870912, 0, -524288, 536870912, 0, -524287, 536870912, 0, -524286, 536870912, 0, -524285, 536870912, 0, -524284, 536870912, 0, -524283, 536870912, 0, -524282, 536870912, 0, -524281, 536870912, 0, -524280, 536870912, 0, -524279, 536870912, 0, -524278, 536870912, 0, -524277, 536870912, 0, -524276, 536870912, 0, -524275, 536870912, 0, -393230, 536870912, 0, -393229, 536870912, 0, -393228, 536870912, 0, -393227, 536870912, 0, -393226, 536870912, 0, -393225, 536870912, 0, -393224, 536870912, 0, -393223, 536870912, 0, -393222, 536870912, 0, -393221, 536870912, 0, -393220, 536870912, 0, -393219, 536870912, 0, -393218, 536870912, 0, -393217, 536870912, 0, -458752, 536870912, 0, -458751, 536870912, 0, -458750, 536870912, 0, -458749, 536870912, 0, -458748, 536870912, 0, -458747, 536870912, 0, -458746, 536870912, 0, -458745, 536870912, 0, -458744, 536870912, 0, -458743, 536870912, 0, -458742, 536870912, 0, -458741, 536870912, 0, -458740, 536870912, 0, -458739, 536870912, 0, -327694, 536870912, 0, -327693, 536870912, 0, -327692, 536870912, 0, -327691, 536870912, 0, -327690, 536870912, 0, -327689, 536870912, 0, -327688, 536870912, 0, -327687, 536870912, 0, -327686, 536870912, 0, -327685, 536870912, 0, -327684, 536870912, 0, -327683, 536870912, 0, -327682, 536870912, 0, -327681, 536870912, 0, -393216, 536870912, 0, -393215, 536870912, 0, -393214, 536870912, 0, -393213, 536870912, 0, -393212, 536870912, 0, -393211, 536870912, 0, -393210, 536870912, 0, -393209, 536870912, 0, -393208, 536870912, 0, -393207, 536870912, 0, -393206, 536870912, 0, -393205, 536870912, 0, -393204, 536870912, 0, -393203, 536870912, 0, -262158, 536870912, 0, -262157, 536870912, 0, -262156, 536870912, 0, -262155, 536870912, 0, -262154, 536870912, 0, -262153, 536870912, 0, -262152, 536870912, 0, -262151, 536870912, 0, -262150, 536870912, 0, -262149, 536870912, 0, -262148, 536870912, 0, -262147, 536870912, 0, -262146, 536870912, 0, -262145, 0, 0, -327680, 0, 0, -327679, 536870912, 0, -327678, 536870912, 0, -327677, 536870912, 0, -327676, 536870912, 0, -327675, 536870912, 0, -327674, 536870912, 0, -327673, 536870912, 0, -327672, 536870912, 0, -327671, 536870912, 0, -327670, 536870912, 0, -327669, 536870912, 0, -327668, 536870912, 0, -327667, 536870912, 0, -196622, 536870912, 0, -196621, 536870912, 0, -196620, 536870912, 0, -196619, 536870912, 0, -196618, 536870912, 0, -196617, 536870912, 0, -196616, 536870912, 0, -196615, 536870912, 0, -196614, 536870912, 0, -196613, 536870912, 0, -196612, 536870912, 0, -196611, 536870912, 0, -196610, 536870912, 0, -196609, 0, 0, -262144, 0, 0, -262143, 536870912, 0, -262142, 536870912, 0, -262141, 536870912, 0, -262140, 536870912, 0, -262139, 536870912, 0, -262138, 536870912, 0, -262137, 536870912, 0, -262136, 536870912, 0, -262135, 536870912, 0, -262134, 536870912, 0, -262133, 536870912, 0, -262132, 536870912, 0, -262131, 536870912, 0, -131086, 536870912, 0, -131085, 536870912, 0, -131084, 536870912, 0, -131083, 536870912, 0, -131082, 536870912, 0, -131081, 536870912, 0, -131080, 536870912, 0, -131079, 536870912, 0, -131078, 536870912, 0, -131077, 536870912, 0, -131076, 536870912, 0, -131075, 536870912, 0, -131074, 536870912, 0, -131073, 536870912, 0, -196608, 536870912, 0, -196607, 536870912, 0, -196606, 536870912, 0, -196605, 536870912, 0, -196604, 536870912, 0, -196603, 536870912, 0, -196602, 536870912, 0, -196601, 536870912, 0, -196600, 536870912, 0, -196599, 536870912, 0, -196598, 536870912, 0, -196597, 536870912, 0, -196596, 536870912, 0, -196595, 536870912, 0, -65550, 536870912, 0, -65549, 536870912, 0, -65548, 536870912, 0, -65547, 536870912, 0, -65546, 536870912, 0, -65545, 536870912, 0, -65544, 2, 0, -65543, 2, 3, -131063, 536870912, 0, -131062, 536870912, 0, -131061, 536870912, 0, -131060, 536870912, 0, -131059, 536870912, 0, -65527, 536870912, 0, -65526, 536870912, 0, -65525, 536870912, 0, -65524, 536870912, 0, -65523, 536870912, 0, 9, 536870912, 0, 10, 536870912, 0, 11, 536870912, 0, 12, 536870912, 0, 13, 536870912, 0 )
|
||||
tile_data = PoolIntArray( -458766, 536870912, 0, -458765, 536870912, 0, -458764, 536870912, 0, -458763, 536870912, 0, -458762, 536870912, 0, -458761, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -458757, 536870912, 0, -458756, 536870912, 0, -458755, 536870912, 0, -458754, 536870912, 0, -458753, 536870912, 0, -524288, 536870912, 0, -524287, 536870912, 0, -524286, 536870912, 0, -524285, 536870912, 0, -524284, 536870912, 0, -524283, 536870912, 0, -524282, 536870912, 0, -524281, 536870912, 0, -524280, 536870912, 0, -524279, 536870912, 0, -524278, 536870912, 0, -524277, 536870912, 0, -524276, 536870912, 0, -524275, 536870912, 0, -393230, 536870912, 0, -393229, 536870912, 0, -393228, 536870912, 0, -393227, 536870912, 0, -393226, 536870912, 0, -393225, 536870912, 0, -393224, 536870912, 0, -393223, 536870912, 0, -393222, 536870912, 0, -393221, 536870912, 0, -393220, 536870912, 0, -393219, 536870912, 0, -393218, 536870912, 0, -393217, 536870912, 0, -458752, 536870912, 0, -458751, 536870912, 0, -458750, 536870912, 0, -458749, 536870912, 0, -458748, 536870912, 0, -458747, 536870912, 0, -458746, 536870912, 0, -458745, 536870912, 0, -458744, 536870912, 0, -458743, 536870912, 0, -458742, 536870912, 0, -458741, 536870912, 0, -458740, 536870912, 0, -458739, 536870912, 0, -327694, 536870912, 0, -327693, 536870912, 0, -327692, 536870912, 0, -327691, 536870912, 0, -327690, 536870912, 0, -327689, 536870912, 0, -327688, 536870912, 0, -327687, 536870912, 0, -327686, 536870912, 0, -327685, 536870912, 0, -327684, 536870912, 0, -327683, 536870912, 0, -327682, 536870912, 0, -327681, 536870912, 0, -393216, 536870912, 0, -393215, 536870912, 0, -393214, 536870912, 0, -393213, 536870912, 0, -393212, 536870912, 0, -393211, 536870912, 0, -393210, 536870912, 0, -393209, 536870912, 0, -393208, 536870912, 0, -393207, 536870912, 0, -393206, 536870912, 0, -393205, 536870912, 0, -393204, 536870912, 0, -393203, 536870912, 0, -262158, 536870912, 0, -262157, 536870912, 0, -262156, 536870912, 0, -262155, 536870912, 0, -262154, 536870912, 0, -262153, 536870912, 0, -262152, 536870912, 0, -262151, 536870912, 0, -262150, 536870912, 0, -262149, 536870912, 0, -262148, 536870912, 0, -262147, 536870912, 0, -262146, 536870912, 0, -262145, 0, 0, -327680, 0, 0, -327679, 536870912, 0, -327678, 536870912, 0, -327677, 536870912, 0, -327676, 536870912, 0, -327675, 536870912, 0, -327674, 536870912, 0, -327673, 536870912, 0, -327672, 536870912, 0, -327671, 536870912, 0, -327670, 536870912, 0, -327669, 536870912, 0, -327668, 536870912, 0, -327667, 536870912, 0, -196622, 536870912, 0, -196621, 536870912, 0, -196620, 536870912, 0, -196619, 536870912, 0, -196618, 536870912, 0, -196617, 536870912, 0, -196616, 536870912, 0, -196615, 536870912, 0, -196614, 536870912, 0, -196613, 536870912, 0, -196612, 536870912, 0, -196611, 536870912, 0, -196610, 536870912, 0, -196609, 0, 0, -262144, 0, 0, -262143, 536870912, 0, -262142, 536870912, 0, -262141, 536870912, 0, -262140, 536870912, 0, -262139, 536870912, 0, -262138, 536870912, 0, -262137, 536870912, 0, -262136, 536870912, 0, -262135, 536870912, 0, -262134, 536870912, 0, -262133, 536870912, 0, -262132, 536870912, 0, -262131, 536870912, 0, -131086, 536870912, 0, -131085, 536870912, 0, -131084, 536870912, 0, -131083, 536870912, 0, -131082, 536870912, 0, -131081, 536870912, 0, -131080, 536870912, 0, -131079, 536870912, 0, -131078, 536870912, 0, -131077, 536870912, 0, -131076, 536870912, 0, -131075, 536870912, 0, -131074, 536870912, 0, -131073, 536870912, 0, -196608, 536870912, 0, -196607, 536870912, 0, -196606, 536870912, 0, -196605, 536870912, 0, -196604, 536870912, 0, -196603, 536870912, 0, -196602, 536870912, 0, -196601, 536870912, 0, -196600, 536870912, 0, -196599, 536870912, 0, -196598, 536870912, 0, -196597, 536870912, 0, -196596, 536870912, 0, -196595, 536870912, 0, -65550, 536870912, 0, -65549, 536870912, 0, -65548, 536870912, 0, -65547, 536870912, 0, -65546, 536870912, 0, -65545, 536870912, 0, -65544, 536870914, 2, -65543, 2, 3, -131063, 536870912, 0, -131062, 536870912, 0, -131061, 536870912, 0, -131060, 536870912, 0, -131059, 536870912, 0, -65527, 536870912, 0, -65526, 536870912, 0, -65525, 536870912, 0, -65524, 536870912, 0, -65523, 536870912, 0, 9, 536870912, 0, 10, 536870912, 0, 11, 536870912, 0, 12, 536870912, 0, 13, 536870912, 0 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
|
||||
|
|
@ -195,12 +200,13 @@ region_rect = Rect2( 0, 0, 18, 18 )
|
|||
|
||||
[node name="arrows_label" type="Label" parent="Node2D"]
|
||||
margin_left = 13.0
|
||||
margin_top = -7.0
|
||||
margin_right = 43.0
|
||||
margin_bottom = 6.0
|
||||
margin_top = -4.0
|
||||
margin_right = 45.0
|
||||
margin_bottom = 9.0
|
||||
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
|
||||
custom_constants/shadow_as_outline = 1
|
||||
custom_fonts/font = ExtResource( 8 )
|
||||
custom_fonts/font = SubResource( 4 )
|
||||
text = "move"
|
||||
uppercase = true
|
||||
|
||||
[editable path="GameCamera"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=21 format=2]
|
||||
[gd_scene load_steps=22 format=2]
|
||||
|
||||
[ext_resource path="res://src/stage/SolidTileMap.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://src/actor/Exit.tscn" type="PackedScene" id=2]
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
[ext_resource path="res://src/stage/SpikeTileMap.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://src/actor/Player.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://src/stage/Stage.gd" type="Script" id=7]
|
||||
[ext_resource path="res://media/font/m6x11.tres" type="DynamicFont" id=8]
|
||||
[ext_resource path="res://media/font/ExpressionPro.ttf" type="DynamicFontData" id=8]
|
||||
[ext_resource path="res://media/image/crate_tiles.png" type="Texture" id=9]
|
||||
[ext_resource path="res://src/menu/hide_on_level_select.gd" type="Script" id=10]
|
||||
[ext_resource path="res://src/stage/ObscureMap.tscn" type="PackedScene" id=11]
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
[ext_resource path="res://media/image/solid_bricks.png" type="Texture" id=15]
|
||||
[ext_resource path="res://media/image/bricks.png" type="Texture" id=16]
|
||||
|
||||
[sub_resource type="TileSet" id=2]
|
||||
[sub_resource type="TileSet" id=5]
|
||||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 15 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
1/shapes = [ ]
|
||||
1/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=3]
|
||||
[sub_resource type="TileSet" id=6]
|
||||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 16 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -112,7 +112,7 @@
|
|||
6/shapes = [ ]
|
||||
6/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=4]
|
||||
[sub_resource type="TileSet" id=7]
|
||||
0/name = "8pixel.png 0"
|
||||
0/texture = ExtResource( 14 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -155,23 +155,28 @@ outline_color = Color( 0, 0, 0, 1 )
|
|||
extra_spacing_bottom = -4
|
||||
font_data = ExtResource( 13 )
|
||||
|
||||
[sub_resource type="DynamicFont" id=4]
|
||||
extra_spacing_top = -3
|
||||
extra_spacing_bottom = -3
|
||||
font_data = ExtResource( 8 )
|
||||
|
||||
[node name="Stage" type="Node2D"]
|
||||
script = ExtResource( 7 )
|
||||
palette = 0
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 2 )
|
||||
tile_set = SubResource( 5 )
|
||||
tile_data = PoolIntArray( -589839, 536870913, 0, -589838, 536870913, 0, -589837, 536870913, 0, -589836, 536870913, 0, -589835, 536870913, 0, -589834, 536870913, 0, -589833, 536870913, 0, -589832, 536870913, 0, -589831, 536870913, 0, -589830, 536870913, 0, -589829, 536870913, 0, -589828, 536870913, 0, -589827, 536870913, 0, -589826, 536870913, 0, -589825, 536870913, 0, -655360, 536870913, 0, -655359, 536870913, 0, -655358, 536870913, 0, -655357, 536870913, 0, -655356, 536870913, 0, -655355, 536870913, 0, -655354, 536870913, 0, -655353, 536870913, 0, -655352, 536870913, 0, -655351, 536870913, 0, -655350, 536870913, 0, -655349, 536870913, 0, -655348, 536870913, 0, -655347, 536870913, 0, -655346, 536870913, 0, -524303, 536870913, 0, -589810, 536870913, 0, -458767, 536870913, 0, -524274, 536870913, 0, -393231, 536870913, 0, -458738, 536870913, 0, -327695, 536870913, 0, -393202, 536870913, 0, -262159, 536870913, 0, -327666, 536870913, 0, -196623, 536870913, 0, -196613, 0, 0, -196612, 536870912, 1, -196611, 536870912, 0, -196610, 536870912, 1, -196609, 0, 0, -262142, 536870912, 1, -262141, 0, 0, -262140, 536870912, 1, -262139, 0, 0, -262138, 536870912, 1, -262137, 0, 0, -262130, 536870913, 0, -131087, 536870913, 0, -131077, 0, 0, -196601, 0, 0, -196594, 536870913, 0, -65551, 536870913, 0, -65550, 536870913, 0, -65549, 536870913, 0, -65548, 536870913, 0, -65547, 536870913, 0, -65546, 1, 0, -65545, 1, 0, -65544, 0, 0, -65543, 536870912, 1, -65542, 0, 0, -65541, 0, 1, -131065, 536870912, 1, -131058, 536870913, 0, -8, 0, 0, -65533, 0, 0, -65532, 536870912, 0, -65531, 536870912, 1, -65530, 0, 0, -65529, 0, 0, -65528, 536870913, 0, -65527, 536870913, 0, -65526, 536870913, 0, -65525, 536870913, 0, -65524, 536870913, 0, -65523, 536870913, 0, -65522, 536870913, 0, 65528, 536870912, 1, 3, 536870912, 1, 131064, 536870912, 0, 65539, 0, 0, 196600, 536870912, 1, 196607, 0, 0, 131072, 536870912, 0, 131073, 536870912, 1, 131074, 0, 0, 131075, 0, 0, 262136, 0, 0, 262143, 0, 0, 327672, 0, 0, 327673, 536870912, 1, 327674, 0, 0, 327675, 536870912, 1, 327676, 536870912, 0, 327677, 536870912, 0, 327678, 536870912, 1, 327679, 0, 0 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[node name="DetailTileMap" parent="." instance=ExtResource( 4 )]
|
||||
z_index = -11
|
||||
tile_set = SubResource( 3 )
|
||||
tile_set = SubResource( 6 )
|
||||
tile_data = PoolIntArray( -458747, 2, 0, -458746, 0, 0, -458745, -1610612734, 0, -327687, 536870916, 3, -327686, 536870916, 0, -327685, 4, 3, -393211, -1073741822, 0, -393210, 0, 0, -393209, 1610612738, 0, -262151, 4, 2, -262150, 4, 1, -262149, 4, 0, -262148, 4, 3, -327674, 1, 0, -196614, 4, 2, -131078, 536870916, 3, -131076, 4, 1, -131075, 4, 3, -131074, 1073741829, 2, -131073, 5, 0, -196608, 1610612741, 2, -196606, 4, 2, -196605, 4, 0, -196604, 4, 3, -65548, 5, 2, -65547, -1610612731, 2, -65540, 536870916, 2, -131070, 4, 2, -131069, 4, 1, -131068, 4, 3, -12, -1073741819, 0, -11, -1073741819, 0, -10, -1610612730, 0, -9, -1610612730, 0, -6, 4, 2, -5, 4, 0, -4, 536870916, 2, 65524, -1073741819, 2, 65525, 1610612741, 2, 65529, -1610612731, 2, 65531, 0, 0, 7, 6, 0, 131061, 0, 0, 131062, -1073741823, 0, 131063, -1073741823, 0, 131065, -536870907, 2, 131071, 536870916, 3, 65536, 536870916, 0, 65537, 4, 3, 65538, 5, 2, 65540, 4, 3, 65542, 2, 0, 65543, 6, 0, 65544, -1610612734, 0, 196599, 536870916, 3, 196601, 536870916, 0, 196602, 4, 3, 196604, 5, 0, 131076, 536870916, 0, 131077, 4, 3, 131078, 5, 2, 131079, 5, 0, 131080, -1610612731, 2, 262135, 536870916, 3, 262137, 4, 1, 262138, 4, 3, 262140, 6, 0, 196608, 536870916, 1, 196609, 536870916, 0, 196610, 4, 1, 196611, 4, 0, 196612, 536870916, 2, 196614, 5, 0, 196615, 5, 0, 196616, 5, 0, 327670, 4, 2, 327671, 4, 1, 262150, -1073741819, 2, 262151, 5, 0, 262152, 1610612741, 2, 393206, 536870916, 3, 393207, 4, 0, 393208, 4, 1, 393209, 4, 0, 393210, 536870916, 2, 458742, 4, 2, 458743, 4, 0, 458744, 536870916, 2 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 11 )]
|
||||
tile_set = SubResource( 4 )
|
||||
tile_set = SubResource( 7 )
|
||||
tile_data = PoolIntArray( -524302, 536870912, 0, -524301, 536870912, 0, -524300, 536870912, 0, -524299, 536870912, 0, -524298, 536870912, 0, -524297, 536870912, 0, -524296, 536870912, 0, -524295, 536870912, 0, -524294, 536870912, 0, -524293, 536870912, 0, -524292, 536870912, 0, -524291, 536870912, 0, -524290, 536870912, 0, -524289, 536870912, 0, -589824, 536870912, 0, -589823, 536870912, 0, -589822, 536870912, 0, -589821, 536870912, 0, -589820, 536870912, 0, -589819, 536870912, 0, -589818, 536870912, 0, -589817, 536870912, 0, -589816, 536870912, 0, -589815, 536870912, 0, -589814, 536870912, 0, -589813, 536870912, 0, -589812, 536870912, 0, -589811, 536870912, 0, -458766, 536870912, 0, -458765, 536870912, 0, -458764, 536870912, 0, -458763, 536870912, 0, -458762, 536870912, 0, -458761, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -458757, 536870912, 0, -458756, 536870912, 0, -458755, 536870912, 0, -458754, 536870912, 0, -458753, 536870912, 0, -524288, 536870912, 0, -524287, 536870912, 0, -524286, 536870912, 0, -524285, 536870912, 0, -524284, 536870912, 0, -524283, 536870912, 0, -524282, 536870912, 0, -524281, 536870912, 0, -524280, 536870912, 0, -524279, 536870912, 0, -524278, 536870912, 0, -524277, 536870912, 0, -524276, 536870912, 0, -524275, 536870912, 0, -393230, 536870912, 0, -393229, 536870912, 0, -393228, 536870912, 0, -393227, 536870912, 0, -393226, 536870912, 0, -393225, 536870912, 0, -393224, 536870912, 0, -393223, 536870912, 0, -393222, 536870912, 0, -393221, 536870912, 0, -393220, 536870912, 0, -393219, 536870912, 0, -393218, 536870912, 0, -393217, 536870912, 0, -458752, 536870912, 0, -458751, 536870912, 0, -458750, 536870912, 0, -458749, 536870912, 0, -458748, 536870912, 0, -458747, 536870912, 0, -458746, 536870912, 0, -458745, 536870912, 0, -458744, 536870912, 0, -458743, 536870912, 0, -458742, 536870912, 0, -458741, 536870912, 0, -458740, 536870912, 0, -458739, 536870912, 0, -327694, 536870912, 0, -327693, 536870912, 0, -327692, 536870912, 0, -327691, 536870912, 0, -327690, 0, 0, -327689, 536870912, 0, -327688, 536870912, 0, -327687, 536870912, 0, -327686, 536870912, 0, -327685, 536870912, 0, -327684, 536870912, 0, -327683, 536870912, 0, -327682, 536870912, 0, -327681, 536870912, 0, -393216, 536870912, 0, -393215, 536870912, 0, -393214, 536870912, 0, -393213, 536870912, 0, -393212, 536870912, 0, -393211, 536870912, 0, -393210, 536870912, 0, -393209, 536870912, 0, -393208, 536870912, 0, -393207, 536870912, 0, -393206, 536870912, 0, -393205, 536870912, 0, -393204, 536870912, 0, -393203, 536870912, 0, -262158, 536870912, 0, -262157, 536870912, 0, -262156, 536870912, 0, -262155, 536870912, 0, -262154, 0, 0, -262153, 536870912, 0, -262152, 536870912, 0, -262151, 536870912, 0, -262150, 536870912, 0, -262149, 536870912, 0, -262148, 536870912, 0, -262147, 536870912, 0, -262146, 536870912, 0, -262145, 536870912, 0, -327680, 536870912, 0, -327679, 536870912, 0, -327678, 536870912, 0, -327677, 536870912, 0, -327676, 536870912, 0, -327675, 536870912, 0, -327674, 536870912, 0, -327673, 536870912, 0, -327672, 536870912, 0, -327671, 536870912, 0, -327670, 536870912, 0, -327669, 536870912, 0, -327668, 536870912, 0, -327667, 536870912, 0, -196622, 536870912, 0, -196621, 536870912, 0, -196620, 536870912, 0, -196619, 536870912, 0, -196618, 536870912, 0, -196617, 536870912, 0, -196616, 536870912, 0, -196615, 536870912, 0, -196614, 536870912, 0, -262144, 536870914, 3, -262143, 2, 2, -262142, 2, 1, -262136, 536870912, 0, -262135, 536870912, 0, -262134, 536870912, 0, -262133, 536870912, 0, -262132, 536870912, 0, -262131, 536870912, 0, -131086, 536870912, 0, -131085, 536870912, 0, -131084, 536870912, 0, -131083, 536870912, 0, -131082, 536870912, 0, -131081, 536870912, 0, -131080, 536870912, 0, -131079, 536870912, 0, -131078, 536870912, 0, -196600, 536870912, 0, -196599, 536870912, 0, -196598, 536870912, 0, -196597, 536870912, 0, -196596, 536870912, 0, -196595, 536870912, 0, -131064, 536870912, 0, -131063, 536870912, 0, -131062, 536870912, 0, -131061, 536870912, 0, -131060, 536870912, 0, -131059, 536870912, 0 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
|
|
@ -202,13 +207,14 @@ text = "x"
|
|||
uppercase = true
|
||||
|
||||
[node name="Label" type="Label" parent="Node2D"]
|
||||
margin_left = 11.0
|
||||
margin_top = -7.0
|
||||
margin_right = 41.0
|
||||
margin_bottom = 6.0
|
||||
margin_left = 13.0
|
||||
margin_top = -4.0
|
||||
margin_right = 45.0
|
||||
margin_bottom = 9.0
|
||||
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
|
||||
custom_constants/shadow_as_outline = 1
|
||||
custom_fonts/font = ExtResource( 8 )
|
||||
custom_fonts/font = SubResource( 4 )
|
||||
text = "jump"
|
||||
uppercase = true
|
||||
|
||||
[editable path="GameCamera"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=22 format=2]
|
||||
[gd_scene load_steps=23 format=2]
|
||||
|
||||
[ext_resource path="res://src/stage/SolidTileMap.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://src/actor/Box.tscn" type="PackedScene" id=2]
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
[ext_resource path="res://src/stage/SpikeTileMap.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://src/actor/Player.tscn" type="PackedScene" id=7]
|
||||
[ext_resource path="res://src/stage/Stage.gd" type="Script" id=8]
|
||||
[ext_resource path="res://media/font/m6x11.tres" type="DynamicFont" id=9]
|
||||
[ext_resource path="res://media/font/ExpressionPro.ttf" type="DynamicFontData" id=9]
|
||||
[ext_resource path="res://media/font/NicoPaint-Regular.ttf" type="DynamicFontData" id=10]
|
||||
[ext_resource path="res://src/menu/hide_on_level_select.gd" type="Script" id=11]
|
||||
[ext_resource path="res://src/actor/Note.tscn" type="PackedScene" id=12]
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
[ext_resource path="res://media/image/solid_bricks.png" type="Texture" id=16]
|
||||
[ext_resource path="res://media/image/bricks.png" type="Texture" id=17]
|
||||
|
||||
[sub_resource type="TileSet" id=2]
|
||||
[sub_resource type="TileSet" id=5]
|
||||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 16 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
1/shapes = [ ]
|
||||
1/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=3]
|
||||
[sub_resource type="TileSet" id=6]
|
||||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 17 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
6/shapes = [ ]
|
||||
6/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=4]
|
||||
[sub_resource type="TileSet" id=7]
|
||||
0/name = "8pixel.png 0"
|
||||
0/texture = ExtResource( 15 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -156,23 +156,28 @@ outline_color = Color( 0, 0, 0, 1 )
|
|||
extra_spacing_bottom = -4
|
||||
font_data = ExtResource( 10 )
|
||||
|
||||
[sub_resource type="DynamicFont" id=4]
|
||||
extra_spacing_top = -3
|
||||
extra_spacing_bottom = -3
|
||||
font_data = ExtResource( 9 )
|
||||
|
||||
[node name="Stage" type="Node2D"]
|
||||
script = ExtResource( 8 )
|
||||
palette = 0
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 2 )
|
||||
tile_set = SubResource( 5 )
|
||||
tile_data = PoolIntArray( -589842, 536870913, 0, -589841, 536870913, 0, -589840, 536870913, 0, -589839, 536870913, 0, -589838, 536870913, 0, -589837, 536870913, 0, -589836, 536870913, 0, -589835, 536870913, 0, -589834, 536870913, 0, -524306, 536870913, 0, -524298, 536870913, 0, -458770, 536870913, 0, -458762, 536870912, 0, -458761, 0, 1, -458760, 0, 0, -458759, 0, 1, -458758, 536870912, 0, -458757, 0, 1, -458756, 0, 1, -458755, 0, 0, -458754, 0, 1, -458753, 536870912, 0, -524288, 0, 1, -524287, 0, 1, -524286, 536870912, 0, -524285, 0, 1, -524284, 0, 0, -393234, 536870913, 0, -393226, 0, 1, -458748, 0, 1, -327698, 536870913, 0, -327690, 536870912, 0, -393212, 0, 0, -393211, 0, 1, -393210, 536870912, 0, -262162, 536870913, 0, -262154, 536870912, 0, -262153, 0, 1, -262152, 0, 1, -262151, 0, 0, -262150, 0, 1, -262149, 536870912, 0, -327674, 536870912, 0, -196626, 536870913, 0, -262138, 0, 1, -131090, 536870913, 0, -196602, 536870912, 0, -65554, 536870913, 0, -65553, 536870913, 0, -65552, 536870913, 0, -65551, 536870913, 0, -65550, 536870913, 0, -65549, 536870912, 0, -65548, 0, 1, -65547, 0, 0, -65546, 0, 1, -65545, 536870912, 0, -65544, 536870912, 0, -131066, 0, 1, -13, 536870912, 0, -65530, 536870912, 0, 65523, 0, 1, 65534, 536870912, 0, 65535, 0, 1, 0, 0, 0, 1, 0, 1, 2, 536870912, 0, 3, 0, 1, 4, 0, 0, 5, 0, 1, 6, 536870912, 0, 131059, 0, 0, 131070, 0, 1, 196595, 0, 1, 196606, 0, 0, 262131, 536870912, 0, 262142, 0, 1, 327667, 536870912, 0, 327668, 0, 1, 327669, 0, 0, 327670, 0, 1, 327671, 536870912, 0, 327672, 0, 1, 327673, 0, 1, 327674, 0, 0, 327675, 0, 1, 327676, 536870912, 0, 327677, 0, 1, 327678, 536870912, 0 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 6 )]
|
||||
|
||||
[node name="DetailTileMap" parent="." instance=ExtResource( 5 )]
|
||||
z_index = -11
|
||||
tile_set = SubResource( 3 )
|
||||
tile_set = SubResource( 6 )
|
||||
tile_data = PoolIntArray( -524295, 536870916, 3, -524294, 536870916, 0, -524293, 536870916, 2, -589821, 536870916, 3, -589820, 536870916, 1, -589819, 536870916, 2, -458766, 5, 2, -458765, -1610612731, 2, -524283, 536870916, 1, -524282, 4, 3, -393230, -1073741819, 0, -393229, -1073741819, 0, -393228, -1610612730, 0, -393227, -1610612730, 0, -393223, 4, 2, -393222, 4, 1, -393221, 4, 3, -393218, 6, 0, -458749, 4, 2, -458747, 4, 0, -458746, 4, 3, -327694, -1073741819, 2, -327693, 1610612741, 2, -327687, 4, 2, -327686, 4, 0, -327685, 4, 3, -327682, 1610612741, 2, -393209, 4, 3, -327678, 5, 2, -327677, 5, 0, -327676, -1610612731, 2, -327675, 4, 2, -327673, 4, 0, -327672, 4, 3, -196614, 1073741829, 2, -196613, 1610612741, 2, -262142, 5, 0, -262141, 5, 0, -262140, 5, 0, -262137, 536870916, 2, -131076, 536870916, 3, -131075, 4, 0, -131074, 536870916, 2, -196606, -1073741819, 2, -196605, 5, 0, -196604, 1610612741, 2, -65540, 536870916, 3, -65539, 4, 1, -65538, 536870916, 2, -131072, 536870916, 3, -131071, 4, 0, -131070, 4, 3, -131069, 6, 0, -11, 1073741829, 2, -10, 5, 0, -9, 1610612741, 2, -65536, 4, 2, -65535, 536870916, 1, -65534, 4, 3, -65533, 6, 0, 131057, 536870916, 3, 131058, 536870916, 0, 131060, 4, 0, 131061, 4, 1, 131062, 4, 3, 131071, -1610612731, 2, 65536, 4, 2, 65537, 4, 0, 65538, 536870916, 2, 65541, 6, 0, 196593, 536870916, 3, 196594, 536870916, 1, 196596, 4, 1, 196597, 4, 0, 196598, 4, 3, 196607, -1610612731, 0, 131077, 6, 0, 262129, 4, 2, 262130, 536870916, 0, 262132, 4, 0, 262133, 4, 1, 262134, 536870916, 2, 262138, 5, 2, 262139, 5, 0, 262140, 5, 0, 262141, 536870917, 2, 262143, -536870907, 2, 196613, 5, 0, 327666, 4, 2 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 13 )]
|
||||
tile_set = SubResource( 4 )
|
||||
tile_set = SubResource( 7 )
|
||||
tile_data = PoolIntArray( -524305, 536870912, 0, -524304, 536870912, 0, -524303, 536870912, 0, -524302, 536870912, 0, -524301, 536870912, 0, -524300, 536870912, 0, -524299, 536870912, 0, -458769, 536870912, 0, -458768, 536870912, 0, -458767, 536870912, 0, -458766, 536870912, 0, -458765, 536870912, 0, -458764, 536870912, 0, -458763, 536870912, 0, -393233, 536870912, 0, -393232, 536870912, 0, -393231, 536870912, 0, -393230, 536870912, 0, -393229, 536870912, 0, -393228, 536870912, 0, -393227, 536870912, 0, -327697, 536870912, 0, -327696, 536870912, 0, -327695, 536870912, 0, -327694, 536870912, 0, -327693, 536870912, 0, -327692, 536870912, 0, -327691, 536870912, 0, -262161, 536870912, 0, -262160, 0, 0, -262159, 0, 0, -262158, 536870912, 0, -262157, 536870912, 0, -262156, 536870912, 0, -262155, 536870912, 0, -196625, 536870912, 0, -196624, 0, 0, -196623, 0, 0, -196622, 536870912, 0, -196621, 536870912, 0, -196620, 536870912, 0, -196619, 536870912, 0, -196618, 536870912, 0, -196617, 536870912, 0, -196616, 536870914, 2, -131089, 536870912, 0, -131088, 536870912, 0, -131087, 536870912, 0, -131086, 536870912, 0, -131085, 536870912, 0, -131084, 536870912, 0, -131083, 536870912, 0, -131082, 536870912, 0, -131081, 536870912, 0, -131080, 536870914, 3 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 4 )]
|
||||
|
|
@ -214,12 +219,13 @@ uppercase = true
|
|||
|
||||
[node name="Label" type="Label" parent="Node2D"]
|
||||
margin_left = 9.0
|
||||
margin_top = -7.0
|
||||
margin_right = 39.0
|
||||
margin_bottom = 6.0
|
||||
margin_top = -4.0
|
||||
margin_right = 41.0
|
||||
margin_bottom = 9.0
|
||||
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
|
||||
custom_constants/shadow_as_outline = 1
|
||||
custom_fonts/font = ExtResource( 9 )
|
||||
custom_fonts/font = SubResource( 4 )
|
||||
text = "menu"
|
||||
uppercase = true
|
||||
|
||||
[editable path="GameCamera"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=22 format=2]
|
||||
[gd_scene load_steps=23 format=2]
|
||||
|
||||
[ext_resource path="res://src/stage/SolidTileMap.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://src/actor/Box.tscn" type="PackedScene" id=2]
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
[ext_resource path="res://src/stage/SpikeTileMap.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://src/actor/Player.tscn" type="PackedScene" id=7]
|
||||
[ext_resource path="res://src/stage/Stage.gd" type="Script" id=8]
|
||||
[ext_resource path="res://media/font/m6x11.tres" type="DynamicFont" id=9]
|
||||
[ext_resource path="res://media/font/ExpressionPro.ttf" type="DynamicFontData" id=9]
|
||||
[ext_resource path="res://media/font/NicoPaint-Regular.ttf" type="DynamicFontData" id=10]
|
||||
[ext_resource path="res://src/menu/hide_on_level_select.gd" type="Script" id=11]
|
||||
[ext_resource path="res://src/stage/ObscureMap.tscn" type="PackedScene" id=12]
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
[ext_resource path="res://media/image/solid_bricks.png" type="Texture" id=16]
|
||||
[ext_resource path="res://media/image/bricks.png" type="Texture" id=17]
|
||||
|
||||
[sub_resource type="TileSet" id=2]
|
||||
[sub_resource type="TileSet" id=5]
|
||||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 16 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
1/shapes = [ ]
|
||||
1/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=3]
|
||||
[sub_resource type="TileSet" id=6]
|
||||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 17 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
6/shapes = [ ]
|
||||
6/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=4]
|
||||
[sub_resource type="TileSet" id=7]
|
||||
0/name = "8pixel.png 0"
|
||||
0/texture = ExtResource( 15 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -156,23 +156,28 @@ outline_color = Color( 0, 0, 0, 1 )
|
|||
extra_spacing_bottom = -4
|
||||
font_data = ExtResource( 10 )
|
||||
|
||||
[sub_resource type="DynamicFont" id=4]
|
||||
extra_spacing_top = -3
|
||||
extra_spacing_bottom = -3
|
||||
font_data = ExtResource( 9 )
|
||||
|
||||
[node name="Stage" type="Node2D"]
|
||||
script = ExtResource( 8 )
|
||||
palette = 0
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 2 )
|
||||
tile_set = SubResource( 5 )
|
||||
tile_data = PoolIntArray( -720909, 1, 0, -720908, 1, 0, -720907, 1, 0, -720906, 1, 0, -720905, 1, 0, -720904, 1, 0, -720903, 1, 0, -720902, 1, 0, -720901, 1, 0, -720900, 1, 0, -720899, 1, 0, -720898, 1, 0, -720897, 1, 0, -786432, 1, 0, -786431, 1, 0, -786430, 1, 0, -786429, 1, 0, -786428, 1, 0, -786427, 1, 0, -786426, 1, 0, -786425, 1, 0, -786424, 1, 0, -786423, 1, 0, -786422, 1, 0, -786421, 1, 0, -786420, 1, 0, -786419, 1, 0, -786418, 1, 0, -786417, 1, 0, -786416, 1, 0, -655373, 1, 0, -720880, 1, 0, -589837, 1, 0, -655344, 1, 0, -524301, 1, 0, -589808, 1, 0, -458765, 1, 0, -524272, 1, 0, -393229, 1, 0, -458736, 1, 0, -327693, 1, 0, -327685, 536870912, 0, -327684, 536870912, 1, -327683, 0, 0, -327682, 536870912, 1, -327681, 536870912, 0, -393214, 0, 1, -393200, 1, 0, -262157, 1, 0, -262152, 536870912, 0, -262151, 536870912, 1, -262150, 0, 0, -262149, 536870912, 1, -327678, 536870912, 0, -327664, 1, 0, -196621, 1, 0, -196616, 536870912, 0, -262142, 536870912, 1, -262141, 0, 0, -262140, 536870912, 1, -262139, 536870912, 0, -262128, 1, 0, -131085, 1, 0, -131080, 536870912, 1, -196603, 536870912, 1, -196592, 1, 0, -65549, 1, 0, -65548, 1, 0, -65547, 1, 0, -65546, 1, 0, -65545, 1, 0, -65544, 536870912, 0, -65543, 536870912, 1, -65542, 536870912, 0, -65541, 536870912, 1, -65540, 0, 0, -65539, 536870912, 1, -65538, 536870912, 0, -131067, 536870912, 0, -131056, 1, 0, -5, 536870912, 1, -65531, 536870912, 0, -65530, 536870912, 1, -65529, 0, 0, -65528, 536870912, 1, -65527, 536870912, 0, -65526, 536870912, 1, -65525, 536870912, 0, -65524, 1, 0, -65523, 1, 0, -65522, 1, 0, -65521, 1, 0, -65520, 1, 0, 65531, 536870912, 0, 11, 536870912, 1, 131067, 536870912, 1, 65547, 536870912, 0, 196603, 536870912, 0, 131083, 536870912, 1, 262139, 536870912, 0, 262140, 536870912, 1, 262141, 0, 0, 262142, 536870912, 0, 262143, 536870912, 1, 196608, 0, 0, 196609, 536870912, 1, 196610, 536870912, 0, 196619, 536870912, 0, 262146, 536870912, 0, 262152, 536870912, 0, 262153, 536870912, 1, 262154, 0, 0, 262155, 536870912, 0, 327682, 536870912, 0, 327683, 536870912, 1, 327684, 536870912, 0, 327685, 536870912, 1, 327686, 0, 0, 327687, 536870912, 1, 327688, 536870912, 0 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 6 )]
|
||||
|
||||
[node name="DetailTileMap" parent="." instance=ExtResource( 5 )]
|
||||
z_index = -11
|
||||
tile_set = SubResource( 3 )
|
||||
tile_set = SubResource( 6 )
|
||||
tile_data = PoolIntArray( -393211, 536870916, 3, -393210, 4, 0, -393209, 4, 3, -262147, 1073741829, 2, -262146, 5, 0, -262145, 5, 0, -327680, 1610612741, 2, -327676, 536870916, 3, -327675, 4, 0, -327674, 536870916, 1, -327673, 4, 3, -196612, 536870916, 3, -196611, 4, 1, -196610, 4, 3, -262138, 536870916, 0, -262137, 536870916, 1, -262136, 4, 3, -131076, 4, 2, -131075, 4, 0, -131074, 4, 3, -196604, 536870916, 0, -196602, 536870916, 1, -196601, 536870916, 0, -196600, 536870916, 2, -65545, 536870916, 3, -65540, 4, 0, -131072, 5, 2, -131071, 5, 0, -131070, -1610612731, 2, -131068, 4, 2, -131066, 4, 1, -131065, 536870916, 2, -9, 536870916, 3, -8, 4, 0, -7, 4, 1, -6, 4, 0, -4, 4, 0, -3, 4, 1, -2, 536870916, 2, -65536, 5, 0, -65535, 5, 0, -65534, 5, 0, 65527, 4, 2, 65528, 4, 1, 65529, 4, 0, 65530, 4, 1, 65532, 4, 1, 65533, 536870916, 0, 65534, 4, 3, 0, -1073741819, 2, 1, 5, 0, 2, 1610612741, 2, 6, 1073741829, 2, 7, 5, 0, 8, 5, 0, 9, 1610612741, 2, 131064, 4, 2, 131065, 4, 1, 131066, 4, 0, 65537, 6, 0, 65546, 4, 2, 65548, 4, 0, 65549, 4, 3, 196604, 5, 0, 196605, 5, 0, 196606, 536870917, 2, 131073, 6, 0, 131076, 4, 2, 131077, 4, 3, 131082, 536870916, 3, 131084, 4, 1, 131085, 4, 3, 196612, 4, 2, 196613, 4, 0, 196614, 4, 3, 196618, 4, 2, 196620, 536870916, 0, 196621, 4, 3, 327677, 6, 0, 262148, 4, 2, 262149, 4, 1, 262150, 4, 3, 262156, 4, 1, 262157, 4, 3, 393213, 1610612741, 2, 327690, 4, 2, 327691, 4, 1, 327692, 536870916, 0, 327693, 536870916, 2, 393220, 4, 2, 393221, 4, 0, 393222, 4, 3 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 12 )]
|
||||
tile_set = SubResource( 4 )
|
||||
tile_set = SubResource( 7 )
|
||||
tile_data = PoolIntArray( -655372, 536870912, 0, -655371, 536870912, 0, -655370, 536870912, 0, -655369, 536870912, 0, -655368, 536870912, 0, -655367, 536870912, 0, -655366, 536870912, 0, -655365, 536870912, 0, -655364, 536870912, 0, -655363, 536870912, 0, -655362, 536870912, 0, -655361, 536870912, 0, -720896, 536870912, 0, -720895, 536870912, 0, -720894, 536870912, 0, -720893, 536870912, 0, -720892, 536870912, 0, -720891, 536870912, 0, -720890, 536870912, 0, -720889, 536870912, 0, -720888, 536870912, 0, -720887, 536870912, 0, -720886, 536870912, 0, -720885, 536870912, 0, -720884, 536870912, 0, -720883, 536870912, 0, -720882, 536870912, 0, -720881, 536870912, 0, -589836, 536870912, 0, -589835, 536870912, 0, -589834, 536870912, 0, -589833, 536870912, 0, -589832, 536870912, 0, -589831, 536870912, 0, -589830, 536870912, 0, -589829, 536870912, 0, -589828, 536870912, 0, -589827, 536870912, 0, -589826, 536870912, 0, -589825, 536870912, 0, -655360, 536870912, 0, -655359, 536870912, 0, -655358, 536870912, 0, -655357, 536870912, 0, -655356, 536870912, 0, -655355, 536870912, 0, -655354, 536870912, 0, -655353, 536870912, 0, -655352, 536870912, 0, -655351, 536870912, 0, -655350, 536870912, 0, -655349, 536870912, 0, -655348, 536870912, 0, -655347, 536870912, 0, -655346, 536870912, 0, -655345, 536870912, 0, -524300, 536870912, 0, -524299, 536870912, 0, -524298, 536870912, 0, -524297, 536870912, 0, -524296, 536870912, 0, -524295, 536870912, 0, -524294, 536870912, 0, -524293, 536870912, 0, -524292, 536870912, 0, -524291, 536870912, 0, -524290, 536870912, 0, -524289, 536870912, 0, -589824, 536870912, 0, -589823, 536870912, 0, -589822, 536870912, 0, -589821, 536870912, 0, -589820, 536870912, 0, -589819, 536870912, 0, -589818, 536870912, 0, -589817, 536870912, 0, -589816, 536870912, 0, -589815, 536870912, 0, -589814, 536870912, 0, -589813, 536870912, 0, -589812, 536870912, 0, -589811, 536870912, 0, -589810, 536870912, 0, -589809, 536870912, 0, -458764, 536870912, 0, -458763, 536870912, 0, -458762, 536870912, 0, -458761, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -458757, 536870912, 0, -458756, 536870912, 0, -458755, 536870912, 0, -458754, 536870912, 0, -458753, 536870912, 0, -524288, 536870912, 0, -524287, 536870912, 0, -524286, 536870912, 0, -524285, 536870912, 0, -524284, 536870912, 0, -524283, 536870912, 0, -524282, 536870912, 0, -524281, 536870912, 0, -524280, 536870912, 0, -524279, 536870912, 0, -524278, 536870912, 0, -524277, 536870912, 0, -524276, 536870912, 0, -524275, 536870912, 0, -524274, 536870912, 0, -524273, 536870912, 0, -393228, 536870912, 0, -393227, 536870912, 0, -393226, 536870912, 0, -393225, 536870912, 0, -393224, 536870912, 0, -393223, 536870912, 0, -393222, 536870912, 0, -393221, 536870912, 0, -393220, 536870912, 0, -393219, 536870912, 0, -393218, 536870912, 0, -393217, 536870912, 0, -458752, 536870912, 0, -458751, 536870912, 0, -458750, 536870912, 0, -458749, 536870912, 0, -458748, 536870912, 0, -458747, 536870912, 0, -458746, 536870912, 0, -458745, 536870912, 0, -458744, 536870912, 0, -458743, 536870912, 0, -458742, 536870912, 0, -458741, 536870912, 0, -458740, 536870912, 0, -458739, 536870912, 0, -458738, 536870912, 0, -458737, 536870912, 0, -327692, 536870912, 0, -327691, 536870912, 0, -327690, 536870912, 0, -327689, 536870912, 0, -327688, 536870912, 0, -327687, 536870912, 0, -327686, 536870912, 0, -393216, 536870914, 3, -393215, 2, 2, -393213, 536870912, 0, -393212, 536870912, 0, -393211, 536870912, 0, -393210, 536870912, 0, -393209, 536870912, 0, -393208, 536870912, 0, -393207, 536870912, 0, -393206, 536870912, 0, -393205, 0, 0, -393204, 0, 0, -393203, 536870912, 0, -393202, 536870912, 0, -393201, 536870912, 0, -262156, 536870912, 0, -262155, 536870912, 0, -262154, 536870912, 0, -262153, 536870912, 0, -327677, 536870912, 0, -327676, 536870912, 0, -327675, 536870912, 0, -327674, 536870912, 0, -327673, 536870912, 0, -327672, 536870912, 0, -327671, 536870912, 0, -327670, 536870912, 0, -327669, 0, 0, -327668, 0, 0, -327667, 536870912, 0, -327666, 536870912, 0, -327665, 536870912, 0, -196620, 536870912, 0, -196619, 536870912, 0, -196618, 536870912, 0, -196617, 536870912, 0, -262138, 536870912, 0, -262137, 536870912, 0, -262136, 536870912, 0, -262135, 536870912, 0, -262134, 536870912, 0, -262133, 536870912, 0, -262132, 536870912, 0, -262131, 536870912, 0, -262130, 536870912, 0, -262129, 536870912, 0, -131084, 536870912, 0, -131083, 536870912, 0, -131082, 536870912, 0, -131081, 536870912, 0, -196602, 536870912, 0, -196601, 536870912, 0, -196600, 536870912, 0, -196599, 536870912, 0, -196598, 536870912, 0, -196597, 536870912, 0, -196596, 536870912, 0, -196595, 536870912, 0, -196594, 536870912, 0, -196593, 536870912, 0, -131066, 536870912, 0, -131065, 536870912, 0, -131064, 536870912, 0, -131063, 536870912, 0, -131062, 536870912, 0, -131061, 536870912, 0, -131060, 536870912, 0, -131059, 536870912, 0, -131058, 536870912, 0, -131057, 536870912, 0 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 4 )]
|
||||
|
|
@ -210,13 +215,14 @@ text = "c"
|
|||
uppercase = true
|
||||
|
||||
[node name="Label" type="Label" parent="Node2D"]
|
||||
margin_left = 11.0
|
||||
margin_top = -5.0
|
||||
margin_right = 41.0
|
||||
margin_bottom = 8.0
|
||||
margin_left = 13.0
|
||||
margin_top = -4.0
|
||||
margin_right = 45.0
|
||||
margin_bottom = 9.0
|
||||
custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
|
||||
custom_constants/shadow_as_outline = 1
|
||||
custom_fonts/font = ExtResource( 9 )
|
||||
custom_fonts/font = SubResource( 4 )
|
||||
text = "lift"
|
||||
uppercase = true
|
||||
|
||||
[editable path="GameCamera"]
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 12 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.768627, 0.52549, 0.67451, 1 )
|
||||
0/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 13 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.188235, 0.121569, 0.164706, 1 )
|
||||
4/modulate = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -127,7 +127,7 @@
|
|||
2/name = "solid_bricks.png 2"
|
||||
2/texture = ExtResource( 12 )
|
||||
2/tex_offset = Vector2( 0, 0 )
|
||||
2/modulate = Color( 0.768627, 0.52549, 0.67451, 1 )
|
||||
2/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
2/region = Rect2( 0, 0, 32, 8 )
|
||||
2/tile_mode = 2
|
||||
2/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -149,14 +149,14 @@
|
|||
[node name="Stage" type="Node2D"]
|
||||
script = ExtResource( 7 )
|
||||
palette = 1
|
||||
color_solid = Color( 0.768627, 0.52549, 0.67451, 1 )
|
||||
color_back = Color( 0.188235, 0.121569, 0.164706, 1 )
|
||||
color_solid = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
color_back = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
color_grass = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 1 )
|
||||
tile_data = PoolIntArray( -720906, 1, 0, -720905, 1, 0, -720904, 1, 0, -720903, 1, 0, -720902, 1, 0, -720901, 1, 0, -720900, 1, 0, -720899, 1, 0, -720898, 1, 0, -720897, 1, 0, -786432, 1, 0, -786431, 1, 0, -786430, 1, 0, -786429, 1, 0, -786428, 1, 0, -786427, 1, 0, -786426, 1, 0, -786425, 1, 0, -786424, 1, 0, -786423, 1, 0, -786422, 1, 0, -786421, 1, 0, -786420, 1, 0, -786419, 1, 0, -786418, 1, 0, -786417, 1, 0, -786416, 1, 0, -786415, 1, 0, -786414, 1, 0, -786413, 1, 0, -655370, 536870913, 0, -720877, 536870913, 0, -589834, 536870913, 0, -655341, 536870913, 0, -524298, 536870913, 0, -589805, 536870913, 0, -458762, 536870913, 0, -524269, 536870913, 0, -393226, 536870913, 0, -458733, 536870913, 0, -327690, 536870913, 0, -327685, 536870912, 0, -327684, 0, 1, -327683, 0, 0, -327682, 0, 1, -327681, 536870912, 0, -393216, 0, 1, -393215, 536870912, 0, -393214, 0, 1, -393213, 536870912, 1, -393211, 536870912, 1, -393210, 536870912, 0, -393209, 0, 1, -393208, 0, 0, -393207, 0, 1, -393206, 0, 1, -393205, 536870912, 0, -393204, 0, 1, -393203, 0, 1, -393202, 0, 0, -393197, 536870913, 0, -262154, 536870913, 0, -327677, 536870912, 0, -327675, 0, 0, -327666, 0, 1, -327661, 536870913, 0, -196618, 536870913, 0, -262141, 536870912, 1, -262140, 536870912, 0, -262139, 536870912, 1, -262130, 536870912, 0, -262125, 536870913, 0, -131082, 536870913, 0, -131081, 536870913, 0, -131080, 536870912, 1, -131079, 0, 0, -131078, 0, 1, -131077, 536870912, 0, -196594, 536870912, 1, -196593, 0, 0, -196592, 0, 1, -196591, 536870912, 0, -196590, 536870913, 0, -196589, 536870913, 0, -65544, 0, 0, -131055, 0, 1, -8, 536870912, 1, -65519, 0, 0, 65528, 536870912, 0, 65529, 0, 1, 65530, 0, 0, 65531, 0, 1, 65532, 536870912, 0, 65533, 536870912, 1, 2, 0, 1, 3, 0, 0, 4, 0, 1, 5, 536870912, 0, 6, 0, 1, 12, 536870912, 0, 13, 0, 1, 14, 0, 0, 15, 0, 1, 16, 536870912, 0, 17, 536870912, 1, 131069, 536870912, 0, 65538, 0, 0, 65542, 536870912, 0, 65548, 536870912, 0, 196605, 536870912, 1, 196606, 0, 0, 196607, 0, 1, 131072, 536870912, 1, 131073, 536870912, 0, 131074, 0, 1, 131078, 0, 1, 131079, 0, 0, 131080, 536870912, 1, 131081, 536870912, 0, 131082, 536870912, 1, 131083, 536870912, 0, 131084, 536870912, 1 )
|
||||
tile_color = Color( 0.768627, 0.52549, 0.67451, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 5 )]
|
||||
tile_data = PoolIntArray( 131070, 0, 0, 131071, 0, 0, 65536, 0, 0, 65537, 0, 0, 65543, 0, 0, 65544, 0, 0, 65545, 0, 0, 65546, 0, 0, 65547, 0, 0 )
|
||||
|
|
@ -165,13 +165,13 @@ tile_data = PoolIntArray( 131070, 0, 0, 131071, 0, 0, 65536, 0, 0, 65537, 0, 0,
|
|||
z_index = -11
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -589809, 5, 2, -589808, 536870917, 0, -589807, -1610612731, 2, -524273, -1073741819, 2, -524272, 536870917, 0, -524271, 1610612741, 2, -458752, 5, 2, -458751, 5, 0, -458750, 536870917, 2, -458748, 536870916, 3, -458747, 4, 0, -458746, 4, 3, -458742, 5, 2, -458741, 536870917, 0, -458740, 536870917, 2, -458736, 536870918, 0, -393212, 4, 2, -393200, 536870918, 0, -262151, 536870916, 3, -262150, 4, 0, -262149, 4, 3, -262147, 1073741829, 2, -262146, 5, 0, -262145, 5, 0, -327680, 5, 0, -327679, 1610612741, 2, -327678, 4, 2, -327676, 4, 3, -327672, 6, 0, -327669, 1073741829, 2, -327668, 5, 0, -327667, 1610612741, 2, -327664, 536870918, 0, -196615, 4, 0, -196614, 4, 1, -196613, 536870916, 0, -196612, 4, 3, -262137, 5, 2, -262136, 5, 0, -262135, -1610612731, 2, -262129, 5, 2, -262128, 536870918, 0, -131076, 4, 0, -131073, 4, 2, -196608, 4, 0, -196607, 4, 3, -196601, -1073741819, 2, -196600, 5, 0, -196599, 1610612741, 2, -196597, 536870916, 3, -196596, 536870916, 2, -65543, 4, 2, -65542, 4, 0, -65541, 4, 1, -65540, 536870916, 2, -65537, 4, 2, -131072, 4, 1, -131071, 4, 3, -131061, 536870916, 3, -131060, 536870916, 2, -131058, 4, 2, -131057, 4, 0, -131056, 536870916, 1, -65533, 5, 2, -65532, 5, 0, -65531, 536870917, 2, -65526, 5, 0, -65522, 536870916, 3, -65521, 536870916, 1, -65520, 536870916, 0, 0, 5, 0, 9, -2147483643, 2, 10, 6, 0, 131066, 536870918, 0, 65536, 6, 0, 65539, 1610612741, 2, 65540, 6, 0, 65541, 1073741829, 2, 65546, 6, 0, 65551, 536870916, 3, 65552, 4, 0, 65553, 4, 3, 196601, 5, 2, 196602, 1610612741, 0, 196603, -1610612731, 2, 131076, 6, 0, 131087, 4, 0, 131088, 4, 1, 131089, 4, 3, 262137, 1610612741, 0, 262138, 1610612741, 0, 262139, 1610612741, 0, 262142, 4, 2, 262143, 4, 1, 196608, 4, 0, 196609, 4, 1, 196610, 4, 3, 196612, 6, 0, 196616, 1073741829, 2, 196617, 5, 0, 196618, 1610612741, 2, 196623, 4, 2, 196624, 4, 0, 196625, 536870916, 2, 327673, -1073741819, 2, 327674, 1610612741, 0, 327675, 1610612741, 2, 327678, 4, 2, 327679, 536870916, 0, 262144, 536870916, 1, 262145, 536870916, 2, 262148, 1610612741, 2 )
|
||||
brick_color = Color( 0.188235, 0.121569, 0.164706, 1 )
|
||||
brick_color = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
grass_color = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 8 )]
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -655369, 536870912, 0, -655368, 536870912, 0, -655367, 536870912, 0, -655366, 536870912, 0, -655365, 536870912, 0, -655364, 536870912, 0, -655363, 536870912, 0, -655362, 536870912, 0, -655361, 536870912, 0, -720896, 536870912, 0, -720895, 536870912, 0, -720894, 536870912, 0, -720893, 536870912, 0, -720892, 536870912, 0, -720891, 536870912, 0, -720890, 536870912, 0, -720889, 536870912, 0, -720888, 536870912, 0, -720887, 536870912, 0, -720886, 536870912, 0, -720885, 536870912, 0, -720884, 536870912, 0, -720883, 536870912, 0, -720882, 536870912, 0, -720881, 536870912, 0, -720880, 536870912, 0, -720879, 536870912, 0, -720878, 536870912, 0, -589833, 536870912, 0, -589832, 536870912, 0, -589831, 536870912, 0, -589830, 536870912, 0, -589829, 536870912, 0, -589828, 536870912, 0, -589827, 536870912, 0, -589826, 536870912, 0, -589825, 536870912, 0, -655360, 536870912, 0, -655359, 536870912, 0, -655358, 536870912, 0, -655357, 536870912, 0, -655356, 536870912, 0, -655355, 536870912, 0, -655354, 536870912, 0, -655353, 536870912, 0, -655352, 536870912, 0, -655351, 536870912, 0, -655350, 536870912, 0, -655349, 536870912, 0, -655348, 536870912, 0, -655347, 536870912, 0, -655346, 536870912, 0, -655345, 536870912, 0, -655344, 536870912, 0, -655343, 536870912, 0, -655342, 536870912, 0, -524297, 536870912, 0, -524296, 536870912, 0, -524295, 536870912, 0, -524294, 536870912, 0, -524293, 536870912, 0, -524292, 536870912, 0, -524291, 536870912, 0, -524290, 536870912, 0, -524289, 536870912, 0, -589824, 536870912, 0, -589823, 536870912, 0, -589822, 536870912, 0, -589821, 536870912, 0, -589820, 536870912, 0, -589819, 536870912, 0, -589818, 536870912, 0, -589817, 536870912, 0, -589816, 536870912, 0, -589815, 536870912, 0, -589814, 536870912, 0, -589813, 536870912, 0, -589812, 536870912, 0, -589811, 536870912, 0, -589810, 536870912, 0, -589809, 536870912, 0, -589808, 536870912, 0, -589807, 536870912, 0, -589806, 536870912, 0, -458761, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -458757, 536870912, 0, -458756, 536870912, 0, -458755, 536870912, 0, -458754, 536870912, 0, -458753, 536870912, 0, -524288, 536870912, 0, -524287, 536870912, 0, -524286, 536870912, 0, -524285, 536870912, 0, -524284, 536870912, 0, -524283, 536870912, 0, -524282, 536870912, 0, -524281, 536870912, 0, -524280, 536870912, 0, -524279, 536870912, 0, -524278, 536870912, 0, -524277, 536870912, 0, -524276, 536870912, 0, -524275, 536870912, 0, -524274, 536870912, 0, -524273, 536870912, 0, -524272, 536870912, 0, -524271, 536870912, 0, -524270, 536870912, 0, -393225, 536870912, 0, -393224, 536870912, 0, -393223, 536870912, 0, -393222, 536870912, 0, -393221, 536870912, 0, -393220, 536870912, 0, -393219, 536870912, 0, -393218, 536870912, 0, -393217, 536870912, 0, -458752, 536870912, 0, -458751, 536870912, 0, -458750, 536870912, 0, -458749, 536870912, 0, -458748, 536870912, 0, -458747, 536870912, 0, -458746, 536870912, 0, -458745, 536870912, 0, -458744, 536870912, 0, -458743, 536870912, 0, -458742, 536870912, 0, -458741, 536870912, 0, -458740, 536870912, 0, -458739, 536870912, 0, -458738, 536870912, 0, -458737, 536870912, 0, -458736, 536870912, 0, -458735, 536870912, 0, -458734, 536870912, 0, -327689, 536870912, 0, -327688, 536870912, 0, -327687, 536870912, 0, -327686, 536870912, 0, -393212, 536870912, 0, -393201, 536870912, 0, -393200, 536870912, 0, -393199, 536870912, 0, -393198, 536870912, 0, -262153, 536870912, 0, -262152, 536870912, 0, -262151, 536870912, 0, -262150, 536870912, 0, -262149, 536870914, 3, -327676, 536870912, 0, -327665, 536870912, 0, -327664, 536870912, 0, -327663, 536870912, 0, -327662, 536870912, 0, -196617, 536870912, 0, -196616, 536870912, 0, -196615, 536870912, 0, -196614, 536870912, 0, -196613, 2, 3, -262129, 536870912, 0, -262128, 536870912, 0, -262127, 536870912, 0, -262126, 536870912, 0 )
|
||||
tile_color = Color( 0.768627, 0.52549, 0.67451, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( 40, -16 )
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 13 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
0/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 14 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
4/modulate = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
5/name = "crate_tiles.png 5"
|
||||
5/texture = ExtResource( 11 )
|
||||
5/tex_offset = Vector2( 0, 0 )
|
||||
5/modulate = Color( 0.65098, 0.411765, 0, 1 )
|
||||
5/modulate = Color( 0.741176, 0.580392, 0, 1 )
|
||||
5/region = Rect2( 0, 16, 24, 8 )
|
||||
5/tile_mode = 2
|
||||
5/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
2/name = "solid_bricks.png 2"
|
||||
2/texture = ExtResource( 13 )
|
||||
2/tex_offset = Vector2( 0, 0 )
|
||||
2/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
2/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
2/region = Rect2( 0, 0, 32, 8 )
|
||||
2/tile_mode = 2
|
||||
2/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -153,14 +153,14 @@ __meta__ = {
|
|||
"_editor_description_": ""
|
||||
}
|
||||
palette = 1
|
||||
color_solid = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
color_back = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
color_grass = Color( 0.65098, 0.411765, 0, 1 )
|
||||
color_solid = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
color_back = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
color_grass = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 1 )
|
||||
tile_data = PoolIntArray( -917514, 1, 0, -917513, 1, 0, -917512, 1, 0, -917511, 1, 0, -917510, 1, 0, -917509, 1, 0, -917508, 1, 0, -917507, 1, 0, -917506, 1, 0, -917505, 1, 0, -983040, 1, 0, -983039, 1, 0, -983038, 1, 0, -983037, 1, 0, -983036, 1, 0, -983035, 1, 0, -983034, 1, 0, -983033, 1, 0, -983032, 1, 0, -983031, 1, 0, -983030, 1, 0, -983029, 1, 0, -983028, 1, 0, -983027, 1, 0, -983026, 1, 0, -983025, 1, 0, -983024, 1, 0, -983023, 1, 0, -983022, 1, 0, -983021, 1, 0, -851978, 1, 0, -917485, 1, 0, -786442, 1, 0, -851949, 1, 0, -720906, 1, 0, -786413, 1, 0, -655370, 1, 0, -720877, 1, 0, -589834, 1, 0, -655341, 1, 0, -524298, 1, 0, -589821, 536870912, 1, -589820, 0, 0, -589819, 0, 1, -589818, 536870912, 0, -589817, 0, 1, -589816, 0, 1, -589815, 0, 0, -589814, 0, 1, -589813, 536870912, 0, -589812, 0, 1, -589811, 536870912, 0, -589810, 536870912, 1, -589805, 1, 0, -458762, 1, 0, -524285, 536870912, 0, -524269, 1, 0, -393226, 1, 0, -393222, 0, 1, -393221, 0, 0, -393220, 0, 1, -393219, 536870912, 0, -393218, 0, 1, -393217, 0, 0, -458752, 0, 1, -458751, 0, 1, -458750, 536870912, 0, -458749, 536870912, 1, -458733, 1, 0, -327690, 1, 0, -327686, 0, 0, -393202, 536870912, 0, -393197, 1, 0, -262154, 1, 0, -262150, 0, 1, -327666, 536870912, 1, -327665, 0, 0, -327664, 0, 1, -327663, 536870912, 0, -327662, 1, 0, -327661, 1, 0, -196618, 1, 0, -196617, 1, 0, -196616, 0, 0, -196615, 0, 1, -196614, 536870912, 0, -262127, 0, 1, -131080, 0, 1, -196591, 0, 0, -65544, 536870912, 0, -131068, 536870912, 0, -131067, 0, 1, -131066, 0, 0, -131059, 0, 1, -131058, 0, 0, -131057, 0, 1, -131056, 536870912, 0, -131055, 0, 1, -8, 0, 1, -65532, 0, 1, -65530, 0, 1, -65523, 0, 0, 65528, 0, 0, 65529, 0, 1, 65530, 536870912, 0, 65531, 0, 1, 1, 0, 1, 2, 0, 0, 3, 0, 1, 4, 536870912, 0, 6, 536870912, 0, 13, 0, 1, 131067, 0, 0, 65537, 0, 0, 65542, 0, 1, 65549, 536870912, 0, 196603, 0, 1, 131073, 0, 1, 131078, 0, 0, 131079, 0, 1, 131080, 536870912, 0, 131081, 0, 1, 131082, 0, 0, 131083, 0, 1, 131084, 536870912, 0, 131085, 536870912, 1, 262139, 0, 0, 262140, 0, 1, 262141, 0, 0, 262142, 0, 1, 262143, 536870912, 0, 196608, 0, 1, 196609, 0, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 5 )]
|
||||
tile_data = PoolIntArray( 65543, 0, 0, 65544, 0, 0, 65545, 0, 0, 65546, 0, 0, 65547, 0, 0, 65548, 0, 0, 196604, 0, 0, 196605, 0, 0, 196606, 0, 0, 196607, 0, 0, 131072, 0, 0 )
|
||||
|
|
@ -169,13 +169,13 @@ tile_data = PoolIntArray( 65543, 0, 0, 65544, 0, 0, 65545, 0, 0, 65546, 0, 0, 65
|
|||
z_index = -11
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -458757, 5, 2, -458756, 5, 0, -458755, 5, 0, -458754, 536870917, 2, -524286, 5, 2, -524282, 6, 0, -524279, 1073741829, 2, -524278, 6, 0, -524275, 1073741829, 2, -458748, -1610612731, 2, -458746, 1610612741, 2, -458742, 6, 0, -458737, 4, 2, -458736, 4, 3, -327685, 1073741829, 2, -327684, -1073741819, 0, -327683, -1073741819, 0, -327682, 1610612741, 2, -393216, 6, 0, -393213, 1073741829, 2, -393212, 5, 0, -393207, 5, 2, -393206, 5, 0, -393205, -1610612731, 2, -393201, 4, 0, -393200, 536870916, 2, -262145, 5, 2, -327680, 5, 0, -327679, -1610612731, 2, -327675, 536870916, 3, -327674, 4, 1, -327673, 536870916, 2, -327671, 5, 0, -327670, 5, 0, -327669, 5, 0, -196612, 4, 2, -196611, 4, 3, -196609, -1073741819, 2, -262144, 5, 0, -262143, 1610612741, 2, -262139, 536870916, 3, -262138, 4, 0, -262137, 536870916, 2, -262135, -1073741819, 2, -262134, 5, 0, -262133, 1610612741, 2, -262131, 4, 2, -262130, 536870916, 0, -262129, 4, 3, -131076, 4, 2, -131075, 4, 0, -131074, 4, 3, -196605, 536870916, 3, -196604, 536870916, 1, -196603, 536870916, 0, -196602, 536870916, 1, -196601, 4, 3, -196595, 4, 2, -196594, 4, 1, -196593, 4, 3, -65540, 4, 2, -65539, 4, 1, -65538, 4, 3, -131070, 4, 2, -131069, 536870916, 1, -131064, 5, 0, -7, 536870917, 2, -65534, 536870916, 3, -65533, 536870916, 0, -65531, 4, 0, -65528, 6, 0, -65525, 5, 2, -65522, 4, 3, -65521, 4, 2, -65520, 4, 3, 65534, 5, 0, 5, 536870916, 1, 7, 4, 3, 8, 6, 0, 11, 6, 0, 14, 4, 2, 15, 4, 0, 16, 4, 3, 131070, 6, 0, 65536, 536870916, 3, 65538, 536870916, 1, 65539, 536870916, 2, 65540, 4, 2, 65541, 536870916, 0, 65544, 6, 0, 65547, 6, 0, 65551, 4, 2, 65552, 536870916, 0, 65553, 4, 3, 196606, 6, 0, 131074, 4, 0, 131075, 4, 3, 131076, 536870916, 3, 131077, 536870916, 1, 196610, 4, 2, 196611, 536870916, 1, 196612, 536870916, 0, 196613, 4, 3 )
|
||||
brick_color = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
grass_color = Color( 0.65098, 0.411765, 0, 1 )
|
||||
brick_color = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
grass_color = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 9 )]
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -851977, 536870912, 0, -851976, 536870912, 0, -851975, 536870912, 0, -851974, 536870912, 0, -851973, 536870912, 0, -851972, 536870912, 0, -851971, 536870912, 0, -851970, 536870912, 0, -851969, 536870912, 0, -917504, 536870912, 0, -917503, 536870912, 0, -917502, 536870912, 0, -917501, 536870912, 0, -917500, 536870912, 0, -917499, 536870912, 0, -917498, 536870912, 0, -917497, 536870912, 0, -917496, 536870912, 0, -917495, 536870912, 0, -917494, 536870912, 0, -917493, 536870912, 0, -917492, 536870912, 0, -917491, 536870912, 0, -917490, 536870912, 0, -917489, 536870912, 0, -917488, 536870912, 0, -917487, 536870912, 0, -917486, 536870912, 0, -786441, 536870912, 0, -786440, 536870912, 0, -786439, 536870912, 0, -786438, 536870912, 0, -786437, 536870912, 0, -786436, 536870912, 0, -786435, 536870912, 0, -786434, 536870912, 0, -786433, 536870912, 0, -851968, 536870912, 0, -851967, 536870912, 0, -851966, 536870912, 0, -851965, 536870912, 0, -851964, 536870912, 0, -851963, 536870912, 0, -851962, 536870912, 0, -851961, 536870912, 0, -851960, 536870912, 0, -851959, 536870912, 0, -851958, 536870912, 0, -851957, 536870912, 0, -851956, 536870912, 0, -851955, 536870912, 0, -851954, 536870912, 0, -851953, 536870912, 0, -851952, 536870912, 0, -851951, 536870912, 0, -851950, 536870912, 0, -720905, 536870912, 0, -720904, 536870912, 0, -720903, 536870912, 0, -720902, 536870912, 0, -720901, 536870912, 0, -720900, 536870912, 0, -720899, 536870912, 0, -720898, 536870912, 0, -720897, 536870912, 0, -786432, 536870912, 0, -786431, 536870912, 0, -786430, 536870912, 0, -786429, 536870912, 0, -786428, 536870912, 0, -786427, 536870912, 0, -786426, 536870912, 0, -786425, 536870912, 0, -786424, 536870912, 0, -786423, 536870912, 0, -786422, 536870912, 0, -786421, 536870912, 0, -786420, 536870912, 0, -786419, 536870912, 0, -786418, 536870912, 0, -786417, 536870912, 0, -786416, 536870912, 0, -786415, 536870912, 0, -786414, 536870912, 0, -655369, 536870912, 0, -655368, 536870912, 0, -655367, 536870912, 0, -655366, 536870912, 0, -655365, 536870912, 0, -655364, 536870912, 0, -655363, 536870912, 0, -655362, 536870912, 0, -655361, 536870912, 0, -720896, 536870912, 0, -720895, 536870912, 0, -720894, 536870912, 0, -720893, 536870912, 0, -720892, 536870912, 0, -720891, 536870912, 0, -720890, 536870912, 0, -720889, 536870912, 0, -720888, 536870912, 0, -720887, 536870912, 0, -720886, 536870912, 0, -720885, 536870912, 0, -720884, 536870912, 0, -720883, 536870912, 0, -720882, 536870912, 0, -720881, 536870912, 0, -720880, 536870912, 0, -720879, 536870912, 0, -720878, 536870912, 0, -589833, 536870912, 0, -589832, 536870912, 0, -589831, 536870912, 0, -589830, 536870912, 0, -589829, 536870912, 0, -589828, 536870912, 0, -589827, 536870912, 0, -589826, 536870912, 0, -589825, 536870912, 0, -655360, 536870912, 0, -655359, 536870912, 0, -655358, 536870912, 0, -655357, 536870912, 0, -655356, 536870912, 0, -655355, 536870912, 0, -655354, 536870912, 0, -655353, 536870912, 0, -655352, 536870912, 0, -655351, 536870912, 0, -655350, 536870912, 0, -655349, 536870912, 0, -655348, 536870912, 0, -655347, 536870912, 0, -655346, 536870912, 0, -655345, 536870912, 0, -655344, 536870912, 0, -655343, 536870912, 0, -655342, 536870912, 0, -524297, 536870912, 0, -524296, 536870912, 0, -524295, 536870912, 0, -524294, 536870912, 0, -524293, 536870912, 0, -524292, 536870912, 0, -524291, 536870912, 0, -524290, 536870912, 0, -524289, 536870912, 0, -589824, 536870912, 0, -589823, 536870912, 0, -589822, 536870912, 0, -589809, 536870912, 0, -589808, 536870912, 0, -589807, 536870912, 0, -589806, 536870912, 0, -458761, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -458757, 536870912, 0, -458756, 536870912, 0, -458755, 536870912, 0, -458754, 536870912, 0, -458753, 536870912, 0, -524288, 536870912, 0, -524287, 536870912, 0, -524286, 536870912, 0, -524274, 2, 2, -524273, 536870912, 0, -524272, 536870912, 0, -524271, 536870912, 0, -524270, 536870912, 0, -393225, 536870912, 0, -393224, 536870912, 0, -393223, 536870912, 0, -458738, 536870914, 3, -458737, 536870912, 0, -458736, 536870912, 0, -458735, 536870912, 0, -458734, 536870912, 0, -327689, 536870912, 0, -327688, 536870912, 0, -327687, 536870912, 0, -393201, 536870912, 0, -393200, 536870912, 0, -393199, 536870912, 0, -393198, 536870912, 0, -262153, 536870912, 0, -262152, 536870912, 0, -262151, 536870912, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( 40, -20 )
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -19,7 +19,7 @@
|
|||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 13 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
0/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 14 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
4/modulate = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
5/name = "crate_tiles.png 5"
|
||||
5/texture = ExtResource( 11 )
|
||||
5/tex_offset = Vector2( 0, 0 )
|
||||
5/modulate = Color( 0.65098, 0.411765, 0, 1 )
|
||||
5/modulate = Color( 0.741176, 0.580392, 0, 1 )
|
||||
5/region = Rect2( 0, 16, 24, 8 )
|
||||
5/tile_mode = 2
|
||||
5/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
2/name = "solid_bricks.png 2"
|
||||
2/texture = ExtResource( 13 )
|
||||
2/tex_offset = Vector2( 0, 0 )
|
||||
2/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
2/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
2/region = Rect2( 0, 0, 32, 8 )
|
||||
2/tile_mode = 2
|
||||
2/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -153,14 +153,14 @@ __meta__ = {
|
|||
"_editor_description_": ""
|
||||
}
|
||||
palette = 1
|
||||
color_solid = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
color_back = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
color_grass = Color( 0.65098, 0.411765, 0, 1 )
|
||||
color_solid = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
color_back = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
color_grass = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 1 )
|
||||
tile_data = PoolIntArray( -1310718, 536870913, 0, -1310717, 536870913, 0, -1310716, 536870913, 0, -1310715, 536870913, 0, -1310714, 536870913, 0, -1310713, 536870913, 0, -1310712, 536870913, 0, -1310711, 536870913, 0, -1310710, 536870913, 0, -1310709, 536870913, 0, -1310708, 536870913, 0, -1310707, 536870913, 0, -1310706, 536870913, 0, -1310705, 536870913, 0, -1310704, 536870913, 0, -1310703, 536870913, 0, -1245182, 536870913, 0, -1245167, 536870913, 0, -1114115, 0, 0, -1114114, 0, 1, -1114113, 536870912, 0, -1179648, 0, 1, -1179647, 536870912, 0, -1179646, 0, 1, -1179631, 536870913, 0, -1048579, 0, 1, -1114110, 0, 0, -1114109, 0, 1, -1114108, 536870912, 0, -1114107, 0, 1, -1114095, 536870913, 0, -983043, 0, 0, -1048571, 0, 0, -1048559, 536870913, 0, -917507, 0, 1, -983035, 0, 1, -983023, 536870913, 0, -851971, 536870912, 0, -917503, 0, 0, -917502, 0, 1, -917501, 0, 0, -917500, 0, 1, -917499, 536870912, 0, -917487, 536870913, 0, -786435, 0, 1, -851966, 536870912, 0, -851951, 536870913, 0, -720899, 0, 0, -786430, 0, 1, -786415, 536870913, 0, -655366, 0, 0, -655365, 0, 1, -655364, 536870912, 0, -655363, 0, 1, -655362, 536870912, 0, -720894, 0, 0, -720879, 536870913, 0, -589830, 0, 1, -655358, 0, 1, -655343, 536870913, 0, -524294, 536870912, 0, -589822, 536870912, 0, -589807, 536870913, 0, -458758, 0, 1, -524287, 0, 0, -524286, 0, 1, -524283, 536870912, 0, -524271, 536870913, 0, -393222, 0, 0, -393221, 0, 1, -393220, 0, 1, -393219, 536870912, 0, -458747, 0, 1, -458735, 536870913, 0, -327683, 0, 1, -393211, 0, 0, -393199, 536870913, 0, -262147, 0, 0, -262146, 0, 1, -327675, 0, 1, -327674, 0, 0, -327673, 0, 1, -327672, 536870912, 0, -327663, 536870913, 0, -196610, 536870912, 0, -262136, 536870912, 0, -262127, 536870913, 0, -131074, 0, 1, -196600, 0, 1, -196591, 536870913, 0, -65538, 0, 0, -65537, 0, 1, -131072, 0, 1, -131071, 536870912, 0, -131064, 0, 0, -131063, 0, 1, -131062, 536870912, 0, -131061, 536870913, 0, -131060, 536870913, 0, -131059, 536870913, 0, -131058, 536870913, 0, -131057, 536870913, 0, -131056, 536870913, 0, -131055, 536870913, 0, -65535, 0, 1, -65526, 0, 1, 1, 0, 0, 10, 0, 0, 65537, 0, 1, 65538, 0, 0, 65539, 0, 1, 65540, 536870912, 0, 65546, 0, 0, 131076, 0, 1, 131082, 0, 1, 196612, 0, 0, 196613, 0, 1, 196614, 536870912, 0, 196615, 0, 1, 196616, 0, 0, 196617, 0, 1, 196618, 536870912, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 5 )]
|
||||
tile_data = PoolIntArray( -720898, 0, 0, -589823, 0, 0, -327682, 0, 0, -131073, 0, 0, -196608, 0, 0, -196607, 0, 0, 2, 0, 0, 3, 0, 0, 4, 0, 0 )
|
||||
|
|
@ -169,13 +169,13 @@ tile_data = PoolIntArray( -720898, 0, 0, -589823, 0, 0, -327682, 0, 0, -131073,
|
|||
z_index = -11
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -1048577, 6, 0, -983050, 4, 2, -983049, 4, 0, -983048, 4, 3, -983045, -1073741819, 2, -983044, -1610612730, 0, -983041, 5, 0, -917514, 536870916, 3, -917513, 4, 1, -917512, 4, 3, -983038, 5, 2, -983037, 536870917, 2, -851978, 4, 2, -851977, 4, 0, -851976, 4, 3, -851972, -2147483643, 2, -851970, -536870907, 0, -917496, 536870916, 3, -917495, 536870916, 0, -917494, 4, 1, -917493, 4, 3, -786436, -2147483643, 0, -786434, -536870907, 2, -851965, 5, 0, -851961, 536870916, 3, -851960, 4, 0, -851959, 4, 1, -851958, 4, 0, -851957, 4, 3, -720901, 5, 2, -720900, 5, 0, -786431, -2147483643, 2, -786429, -536870907, 2, -786426, 4, 2, -786425, 4, 1, -786424, 4, 3, -786422, 4, 2, -786421, 4, 1, -786420, 4, 3, -720895, -1073741819, 0, -720890, 4, 2, -720889, 4, 0, -720888, 4, 3, -720886, 4, 2, -720885, 4, 0, -720884, 4, 3, -655359, -1073741819, 2, -655357, -1610612731, 2, -655353, 4, 2, -655352, 4, 0, -655351, 4, 1, -655350, 4, 0, -655349, 536870916, 2, -524290, 4, 2, -524289, 4, 3, -589821, 536870917, 0, -589820, 536870917, 0, -589819, 536870917, 2, -589816, 4, 2, -589815, 4, 0, -589814, 536870916, 2, -458757, 5, 2, -458756, 5, 0, -458755, 536870917, 2, -458754, 4, 2, -458753, 4, 3, -524275, 536870916, 3, -524274, 536870916, 2, -458750, 6, 0, -458749, 1073741829, 2, -458748, 5, 0, -458746, -1610612731, 2, -458739, 536870916, 3, -458738, 536870916, 2, -327684, -2147483643, 2, -393214, 6, 0, -393210, 5, 0, -393209, 536870917, 0, -393208, 536870917, 2, -262148, -2147483643, 0, -262145, -1610612731, 2, -327678, 1610612741, 2, -196612, -1073741819, 2, -196611, 5, 0, -196609, -536870907, 2, -262137, 1073741829, 2, -262135, 536870917, 2, -131075, -1073741819, 2, -196605, 5, 2, -196604, 5, 0, -196603, -1610612731, 2, -196599, 5, 0, -196598, 536870917, 2, -131069, -1073741819, 2, -131068, 5, 0, -131067, 1610612741, 2, -131061, 536870917, 2, -2, 536870916, 3, -1, 4, 1, -65536, 536870916, 0, -65532, 6, 0, -65527, -1073741819, 2, -65525, 1073741829, 0, 65531, 4, 2, 65532, 4, 3, 65534, 4, 2, 65535, 536870916, 1, 0, 536870916, 2, 4, 6, 0, 11, -536870907, 2, 131067, 4, 2, 131068, 4, 3, 131070, 4, 2, 131071, 4, 0, 65536, 4, 3, 196606, 4, 2, 196607, 4, 1, 131072, 536870916, 0, 131073, 4, 1, 131074, 536870916, 2, 262143, 4, 2, 196608, 4, 1, 196609, 536870916, 2 )
|
||||
brick_color = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
grass_color = Color( 0.65098, 0.411765, 0, 1 )
|
||||
brick_color = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
grass_color = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 9 )]
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -1245181, 536870912, 0, -1245180, 536870912, 0, -1245179, 536870912, 0, -1245178, 536870912, 0, -1245177, 536870912, 0, -1245176, 536870912, 0, -1245175, 536870912, 0, -1245174, 536870912, 0, -1245173, 536870912, 0, -1245172, 536870912, 0, -1245171, 536870912, 0, -1245170, 536870912, 0, -1245169, 536870912, 0, -1245168, 536870912, 0, -1179645, 536870912, 0, -1179644, 536870912, 0, -1179643, 536870912, 0, -1179642, 536870912, 0, -1179641, 536870912, 0, -1179640, 536870912, 0, -1179639, 536870912, 0, -1179638, 536870912, 0, -1179637, 536870912, 0, -1179636, 536870912, 0, -1179635, 536870912, 0, -1179634, 536870912, 0, -1179633, 536870912, 0, -1179632, 536870912, 0, -1114106, 536870912, 0, -1114105, 536870912, 0, -1114104, 536870912, 0, -1114103, 536870912, 0, -1114102, 536870912, 0, -1114101, 536870912, 0, -1114100, 536870912, 0, -1114099, 536870912, 0, -1114098, 536870912, 0, -1114097, 536870912, 0, -1114096, 536870912, 0, -1048570, 536870912, 0, -1048569, 536870912, 0, -1048568, 536870912, 0, -1048567, 536870912, 0, -1048566, 536870912, 0, -1048565, 536870912, 0, -1048564, 536870912, 0, -1048563, 536870912, 0, -1048562, 536870912, 0, -1048561, 536870912, 0, -1048560, 536870912, 0, -983034, 536870912, 0, -983033, 536870912, 0, -983032, 536870912, 0, -983031, 536870912, 0, -983030, 536870912, 0, -983029, 536870912, 0, -983028, 536870912, 0, -983027, 536870912, 0, -983026, 536870912, 0, -983025, 536870912, 0, -983024, 536870912, 0, -917498, 536870912, 0, -917497, 536870912, 0, -917496, 536870912, 0, -917495, 536870912, 0, -917494, 536870912, 0, -917493, 536870912, 0, -917492, 536870912, 0, -917491, 536870912, 0, -917490, 536870912, 0, -917489, 536870912, 0, -917488, 536870912, 0, -851965, 536870912, 0, -851964, 536870912, 0, -851963, 536870912, 0, -851962, 536870912, 0, -851961, 536870912, 0, -851960, 536870912, 0, -851959, 536870912, 0, -851958, 536870912, 0, -851957, 536870912, 0, -851956, 536870912, 0, -851955, 536870912, 0, -851954, 536870912, 0, -851953, 536870912, 0, -851952, 536870912, 0, -786429, 536870912, 0, -786428, 536870912, 0, -786427, 536870912, 0, -786426, 536870912, 0, -786425, 536870912, 0, -786424, 536870912, 0, -786423, 536870912, 0, -786422, 536870912, 0, -786421, 536870912, 0, -786420, 536870912, 0, -786419, 536870912, 0, -786418, 536870912, 0, -786417, 536870912, 0, -786416, 536870912, 0, -720893, 536870912, 0, -720892, 536870912, 0, -720891, 536870912, 0, -720890, 536870912, 0, -720889, 536870912, 0, -720888, 536870912, 0, -720887, 536870912, 0, -720886, 536870912, 0, -720885, 536870912, 0, -720884, 536870912, 0, -720883, 536870912, 0, -720882, 536870912, 0, -720881, 536870912, 0, -720880, 536870912, 0, -655357, 536870912, 0, -655356, 536870912, 0, -655355, 536870912, 0, -655354, 536870912, 0, -655353, 536870912, 0, -655352, 536870912, 0, -655351, 536870912, 0, -655350, 536870912, 0, -655349, 536870912, 0, -655348, 536870912, 0, -655347, 536870912, 0, -655346, 536870912, 0, -655345, 536870912, 0, -655344, 536870912, 0, -589821, 536870912, 0, -589820, 536870912, 0, -589819, 536870912, 0, -589818, 536870912, 0, -589817, 536870912, 0, -589816, 536870912, 0, -589815, 536870912, 0, -589814, 536870912, 0, -589813, 536870912, 0, -589812, 536870912, 0, -589811, 536870912, 0, -589810, 536870912, 0, -589809, 536870912, 0, -589808, 536870912, 0, -524285, 536870914, 2, -524284, 2, 3, -524282, 536870912, 0, -524281, 536870912, 0, -524280, 536870912, 0, -524279, 536870912, 0, -524278, 536870912, 0, -524277, 536870912, 0, -524276, 536870912, 0, -524275, 536870912, 0, -524274, 536870912, 0, -524273, 536870912, 0, -524272, 536870912, 0, -458746, 536870912, 0, -458745, 536870912, 0, -458744, 536870912, 0, -458743, 536870912, 0, -458742, 536870912, 0, -458741, 536870912, 0, -458740, 536870912, 0, -458739, 536870912, 0, -458738, 536870912, 0, -458737, 536870912, 0, -458736, 536870912, 0, -393210, 536870912, 0, -393209, 536870912, 0, -393208, 536870912, 0, -393207, 536870912, 0, -393206, 536870912, 0, -393205, 536870912, 0, -393204, 536870912, 0, -393203, 536870912, 0, -393202, 536870912, 0, -393201, 536870912, 0, -393200, 536870912, 0, -327671, 536870912, 0, -327670, 536870912, 0, -327669, 536870912, 0, -327668, 536870912, 0, -327667, 536870912, 0, -327666, 536870912, 0, -327665, 536870912, 0, -327664, 536870912, 0, -262135, 536870912, 0, -262134, 536870912, 0, -262133, 536870912, 0, -262132, 536870912, 0, -262131, 536870912, 0, -262130, 536870912, 0, -262129, 536870912, 0, -262128, 536870912, 0, -196599, 536870912, 0, -196598, 536870912, 0, -196597, 536870912, 0, -196596, 536870912, 0, -196595, 536870912, 0, -196594, 536870912, 0, -196593, 536870912, 0, -196592, 536870912, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( 20, -24 )
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 13 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
0/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 14 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
4/modulate = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
5/name = "crate_tiles.png 5"
|
||||
5/texture = ExtResource( 11 )
|
||||
5/tex_offset = Vector2( 0, 0 )
|
||||
5/modulate = Color( 0.65098, 0.411765, 0, 1 )
|
||||
5/modulate = Color( 0.741176, 0.580392, 0, 1 )
|
||||
5/region = Rect2( 0, 16, 24, 8 )
|
||||
5/tile_mode = 2
|
||||
5/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
2/name = "solid_bricks.png 2"
|
||||
2/texture = ExtResource( 13 )
|
||||
2/tex_offset = Vector2( 0, 0 )
|
||||
2/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
2/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
2/region = Rect2( 0, 0, 32, 8 )
|
||||
2/tile_mode = 2
|
||||
2/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -153,14 +153,14 @@ __meta__ = {
|
|||
"_editor_description_": ""
|
||||
}
|
||||
palette = 1
|
||||
color_solid = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
color_back = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
color_grass = Color( 0.65098, 0.411765, 0, 1 )
|
||||
color_solid = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
color_back = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
color_grass = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 1 )
|
||||
tile_data = PoolIntArray( -851977, 1, 0, -851976, 1, 0, -851975, 1, 0, -851974, 1, 0, -851973, 1, 0, -851972, 1, 0, -851971, 1, 0, -851970, 1, 0, -851969, 1, 0, -917504, 1, 0, -917503, 1, 0, -917502, 1, 0, -917501, 1, 0, -917500, 1, 0, -917499, 1, 0, -917498, 1, 0, -917497, 1, 0, -917496, 1, 0, -917495, 1, 0, -917494, 1, 0, -917493, 1, 0, -917492, 1, 0, -917491, 1, 0, -917490, 1, 0, -917489, 1, 0, -917488, 1, 0, -917487, 1, 0, -917486, 1, 0, -917485, 1, 0, -917484, 1, 0, -917483, 1, 0, -786441, 1, 0, -851947, 1, 0, -720905, 1, 0, -786411, 1, 0, -655369, 1, 0, -720875, 1, 0, -589833, 1, 0, -655339, 1, 0, -524297, 1, 0, -589803, 1, 0, -458761, 1, 0, -524282, 0, 1, -524281, 536870912, 0, -524280, 0, 1, -524279, 0, 0, -524278, 0, 1, -524277, 536870912, 0, -524276, 0, 1, -524275, 0, 0, -524274, 0, 1, -524273, 536870912, 0, -524267, 1, 0, -393225, 1, 0, -393219, 0, 1, -393218, 0, 0, -393217, 0, 1, -458752, 536870912, 0, -458751, 0, 1, -458746, 0, 0, -458737, 0, 1, -458731, 1, 0, -327689, 1, 0, -327683, 0, 0, -393215, 536870912, 0, -393210, 0, 1, -393201, 0, 0, -393200, 0, 1, -393199, 0, 1, -393198, 536870912, 0, -393197, 1, 0, -393196, 1, 0, -393195, 1, 0, -262153, 1, 0, -262152, 1, 0, -262151, 1, 0, -262150, 0, 0, -262149, 0, 1, -262148, 536870912, 0, -262147, 0, 1, -327662, 0, 1, -196614, 0, 1, -262126, 0, 0, -131078, 536870912, 0, -196594, 0, 0, -196593, 0, 1, -196592, 0, 1, -196591, 536870912, 0, -196590, 0, 1, -65542, 0, 1, -131056, 536870912, 0, -6, 0, 0, -65520, 0, 1, 65530, 0, 1, 65531, 0, 0, 65532, 0, 1, 65533, 536870912, 0, 65534, 0, 1, 65535, 536870912, 0, 16, 0, 0, 131071, 0, 1, 65552, 0, 1, 196607, 0, 0, 131072, 0, 1, 131073, 536870912, 0, 131074, 0, 1, 131075, 0, 1, 131076, 0, 0, 131077, 0, 1, 131078, 536870912, 0, 131079, 0, 1, 131080, 0, 1, 131081, 0, 0, 131082, 0, 1, 131083, 536870912, 0, 131084, 0, 1, 131085, 0, 1, 131086, 0, 0, 131087, 0, 1, 131088, 536870912, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 5 )]
|
||||
tile_data = PoolIntArray( 65536, 0, 0, 65537, 0, 0, 65538, 0, 0, 65539, 0, 0, 65540, 0, 0, 65541, 0, 0, 65542, 0, 0, 65543, 0, 0, 65544, 0, 0, 65545, 0, 0, 65546, 0, 0, 65547, 0, 0, 65548, 0, 0, 65549, 0, 0, 65550, 0, 0, 65551, 0, 0 )
|
||||
|
|
@ -169,13 +169,13 @@ tile_data = PoolIntArray( 65536, 0, 0, 65537, 0, 0, 65538, 0, 0, 65539, 0, 0, 65
|
|||
z_index = -11
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -589815, 5, 2, -589814, 5, 0, -589813, 5, 0, -589812, 536870917, 2, -589807, 4, 2, -589806, 4, 3, -458756, 5, 2, -458755, 536870917, 0, -458754, 536870917, 2, -524288, 5, 2, -524287, 5, 0, -524286, 536870917, 2, -393220, -1073741819, 0, -458750, -1073741819, 0, -458749, -1073741819, 0, -458748, -1073741819, 0, -458747, 536870917, 2, -458743, 6, 0, -458740, 1073741829, 2, -458739, 5, 0, -458738, 1610612741, 2, -327685, 5, 2, -327684, 5, 0, -327682, 1073741829, 2, -327681, 5, 0, -393216, 1610612741, 2, -393211, -1073741819, 0, -393207, 6, 0, -393206, -1610612731, 2, -327675, 1073741829, 2, -327674, 1610612741, 2, -327671, 6, 0, -327669, 536870916, 3, -327668, 536870916, 2, -327666, 4, 2, -327665, 4, 1, -327664, 4, 3, -327661, -1610612731, 2, -196613, 5, 0, -196610, 4, 2, -196609, 4, 3, -262143, 5, 2, -262142, 5, 0, -262141, -1610612731, 2, -262136, 5, 2, -262135, 5, 0, -262134, -1610612731, 2, -262133, 536870916, 3, -262132, 536870916, 2, -262130, 4, 2, -262129, 536870916, 0, -262128, 4, 3, -262125, -536870907, 0, -131077, 5, 0, -131074, 4, 2, -131073, 4, 3, -196607, 5, 0, -196606, 5, 0, -196605, 5, 0, -196600, 5, 0, -196599, 5, 0, -196598, 5, 0, -196597, 536870916, 3, -196596, 536870916, 2, -196589, -536870907, 0, -65543, -2147483643, 2, -65541, -536870907, 2, -131071, -1073741819, 2, -131070, 5, 0, -131069, 1610612741, 2, -131067, 536870916, 3, -131066, 536870916, 2, -131064, 5, 0, -131063, 5, 0, -131062, 5, 0, -131057, -2147483643, 2, -131055, 536870917, 0, -131054, 536870917, 0, -131053, -536870907, 2, -7, -1073741819, 0, -65534, 536870918, 0, -65531, 536870916, 3, -65530, 536870916, 2, -65528, -1073741819, 2, -65527, 5, 0, -65526, 1610612741, 2, -65523, 5, 0, -65521, -2147483643, 0, 65529, -1073741819, 0, 2, 536870918, 0, 3, -536870907, 2, 13, 6, 0, 15, -1073741819, 2, 17, -1610612731, 2, 131065, 1073741829, 2, 131066, 5, 0, 131067, 5, 0, 131068, 5, 0, 131069, 1610612741, 2, 65538, 536870918, 0, 65549, 6, 0, 65553, -1610612731, 0, 131089, -1610612731, 0, 196610, 1073741829, 2, 196611, 1073741829, 0, 196612, 1073741829, 0, 196613, 1073741829, 0, 196614, 1610612741, 2, 196620, 1073741829, 2, 196621, 1073741829, 0, 196622, 1073741829, 0, 196623, 1073741829, 0, 196624, 1073741829, 0, 196625, 1610612741, 2 )
|
||||
brick_color = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
grass_color = Color( 0.65098, 0.411765, 0, 1 )
|
||||
brick_color = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
grass_color = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 9 )]
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -786440, 536870912, 0, -786439, 536870912, 0, -786438, 536870912, 0, -786437, 536870912, 0, -786436, 536870912, 0, -786435, 536870912, 0, -786434, 536870912, 0, -786433, 536870912, 0, -851968, 536870912, 0, -851967, 536870912, 0, -851966, 536870912, 0, -851965, 536870912, 0, -851964, 536870912, 0, -851963, 536870912, 0, -851962, 536870912, 0, -851961, 536870912, 0, -851960, 536870912, 0, -851959, 536870912, 0, -851958, 536870912, 0, -851957, 536870912, 0, -851956, 536870912, 0, -851955, 536870912, 0, -851954, 536870912, 0, -851953, 536870912, 0, -851952, 536870912, 0, -851951, 536870912, 0, -851950, 536870912, 0, -851949, 536870912, 0, -851948, 536870912, 0, -720904, 536870912, 0, -720903, 536870912, 0, -720902, 536870912, 0, -720901, 536870912, 0, -720900, 536870912, 0, -720899, 536870912, 0, -720898, 536870912, 0, -720897, 536870912, 0, -786432, 536870912, 0, -786431, 536870912, 0, -786430, 536870912, 0, -786429, 536870912, 0, -786428, 536870912, 0, -786427, 536870912, 0, -786426, 536870912, 0, -786425, 536870912, 0, -786424, 536870912, 0, -786423, 536870912, 0, -786422, 536870912, 0, -786421, 536870912, 0, -786420, 536870912, 0, -786419, 536870912, 0, -786418, 536870912, 0, -786417, 536870912, 0, -786416, 536870912, 0, -786415, 536870912, 0, -786414, 536870912, 0, -786413, 536870912, 0, -786412, 536870912, 0, -655368, 536870912, 0, -655367, 536870912, 0, -655366, 536870912, 0, -655365, 536870912, 0, -655364, 536870912, 0, -655363, 536870912, 0, -655362, 536870912, 0, -655361, 536870912, 0, -720896, 536870912, 0, -720895, 536870912, 0, -720894, 536870912, 0, -720893, 536870912, 0, -720892, 536870912, 0, -720891, 536870912, 0, -720890, 536870912, 0, -720889, 536870912, 0, -720888, 536870912, 0, -720887, 536870912, 0, -720886, 536870912, 0, -720885, 536870912, 0, -720884, 536870912, 0, -720883, 536870912, 0, -720882, 536870912, 0, -720881, 536870912, 0, -720880, 536870912, 0, -720879, 536870912, 0, -720878, 536870912, 0, -720877, 536870912, 0, -720876, 536870912, 0, -589832, 536870912, 0, -589831, 536870912, 0, -589830, 536870912, 0, -589829, 536870912, 0, -589828, 536870912, 0, -589827, 536870912, 0, -589826, 536870912, 0, -589825, 536870912, 0, -655360, 536870912, 0, -655359, 536870912, 0, -655358, 536870912, 0, -655357, 536870912, 0, -655356, 536870912, 0, -655355, 536870912, 0, -655354, 536870912, 0, -655353, 536870912, 0, -655352, 536870912, 0, -655351, 536870912, 0, -655350, 536870912, 0, -655349, 536870912, 0, -655348, 536870912, 0, -655347, 536870912, 0, -655346, 536870912, 0, -655345, 536870912, 0, -655344, 536870912, 0, -655343, 536870912, 0, -655342, 536870912, 0, -655341, 536870912, 0, -655340, 536870912, 0, -524296, 536870912, 0, -524295, 536870912, 0, -524294, 536870912, 0, -524293, 536870912, 0, -524292, 536870912, 0, -524291, 536870912, 0, -524290, 536870912, 0, -524289, 536870912, 0, -589824, 536870912, 0, -589823, 536870912, 0, -589822, 536870912, 0, -589821, 536870912, 0, -589820, 536870912, 0, -589819, 536870912, 0, -589818, 536870912, 0, -589817, 536870912, 0, -589816, 536870912, 0, -589815, 536870912, 0, -589814, 536870912, 0, -589813, 536870912, 0, -589812, 536870912, 0, -589811, 536870912, 0, -589810, 536870912, 0, -589809, 536870912, 0, -589808, 536870912, 0, -589807, 536870912, 0, -589806, 536870912, 0, -589805, 536870912, 0, -589804, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -458757, 536870912, 0, -458756, 536870912, 0, -458755, 536870912, 0, -458754, 536870912, 0, -458753, 536870912, 0, -524288, 536870912, 0, -524287, 536870912, 0, -524286, 536870912, 0, -524285, 536870912, 0, -524284, 536870912, 0, -524283, 536870912, 0, -524272, 536870912, 0, -524271, 536870912, 0, -524270, 536870912, 0, -524269, 536870912, 0, -524268, 536870912, 0, -393224, 536870912, 0, -393223, 536870912, 0, -393222, 536870912, 0, -393221, 536870912, 0, -393220, 536870912, 0, -458750, 536870912, 0, -458749, 536870912, 0, -458748, 536870912, 0, -458747, 536870912, 0, -458736, 536870912, 0, -458735, 536870912, 0, -458734, 536870912, 0, -458733, 536870912, 0, -458732, 536870912, 0, -327688, 536870912, 0, -327687, 536870912, 0, -327686, 536870912, 0, -327685, 536870912, 0, -327684, 536870912, 0, -393214, 2, 3, -393213, 536870914, 2, -393212, 536870914, 3, -393211, 2, 2 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( 52, -20 )
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -19,7 +19,7 @@
|
|||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 13 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
0/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 14 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
4/modulate = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
5/name = "crate_tiles.png 5"
|
||||
5/texture = ExtResource( 11 )
|
||||
5/tex_offset = Vector2( 0, 0 )
|
||||
5/modulate = Color( 1, 0.639216, 0, 1 )
|
||||
5/modulate = Color( 0.741176, 0.580392, 0, 1 )
|
||||
5/region = Rect2( 0, 16, 24, 8 )
|
||||
5/tile_mode = 2
|
||||
5/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
2/name = "solid_bricks.png 2"
|
||||
2/texture = ExtResource( 13 )
|
||||
2/tex_offset = Vector2( 0, 0 )
|
||||
2/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
2/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
2/region = Rect2( 0, 0, 32, 8 )
|
||||
2/tile_mode = 2
|
||||
2/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -153,14 +153,14 @@ __meta__ = {
|
|||
"_editor_description_": ""
|
||||
}
|
||||
palette = 1
|
||||
color_solid = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
color_back = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
color_grass = Color( 0.65098, 0.411765, 0, 1 )
|
||||
color_solid = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
color_back = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
color_grass = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 1 )
|
||||
tile_data = PoolIntArray( -917519, 1, 0, -917518, 1, 0, -917517, 1, 0, -917516, 1, 0, -917515, 1, 0, -917514, 1, 0, -917513, 1, 0, -917512, 1, 0, -917511, 1, 0, -917510, 1, 0, -917509, 1, 0, -917508, 1, 0, -917507, 1, 0, -917506, 1, 0, -917505, 1, 0, -983040, 1, 0, -983039, 1, 0, -983038, 1, 0, -983037, 1, 0, -983036, 1, 0, -983035, 1, 0, -983034, 1, 0, -983033, 1, 0, -983032, 1, 0, -983031, 1, 0, -983030, 1, 0, -983029, 1, 0, -983028, 1, 0, -983027, 1, 0, -983026, 1, 0, -851983, 1, 0, -917490, 1, 0, -786447, 1, 0, -851954, 1, 0, -720911, 1, 0, -786418, 1, 0, -655375, 1, 0, -720882, 1, 0, -589839, 1, 0, -655346, 1, 0, -524303, 1, 0, -524293, 0, 1, -589820, 536870912, 0, -589810, 1, 0, -458767, 1, 0, -458757, 536870912, 0, -524284, 0, 1, -524274, 1, 0, -393231, 1, 0, -393226, 0, 0, -393225, 0, 1, -393224, 536870912, 0, -393223, 0, 1, -393222, 0, 0, -393221, 0, 1, -458748, 0, 0, -458747, 0, 1, -458746, 0, 0, -458745, 0, 1, -458744, 536870912, 0, -458743, 0, 1, -458738, 1, 0, -327695, 1, 0, -327694, 1, 0, -327693, 1, 0, -327692, 0, 1, -327691, 536870912, 0, -327690, 0, 1, -393207, 0, 0, -393206, 0, 1, -393205, 536870912, 0, -393204, 1, 0, -393203, 1, 0, -393202, 1, 0, -262156, 0, 0, -327669, 0, 1, -196620, 0, 1, -262133, 0, 0, -131084, 536870912, 0, -196597, 0, 0, -65548, 536870912, 0, -131061, 0, 1, -12, 0, 1, -65525, 536870912, 0, 65524, 0, 0, 65525, 0, 1, 65526, 0, 0, 65527, 0, 1, 65528, 536870912, 0, 7, 0, 1, 8, 0, 0, 9, 0, 1, 10, 536870912, 0, 11, 0, 1, 131064, 0, 1, 65543, 0, 0, 196600, 0, 0, 196601, 0, 1, 196602, 536870912, 0, 196603, 0, 1, 196604, 0, 0, 196605, 0, 1, 196606, 536870912, 0, 196607, 0, 1, 131072, 0, 1, 131073, 0, 1, 131074, 0, 0, 131075, 0, 1, 131076, 536870912, 0, 131077, 0, 1, 131078, 536870912, 0, 131079, 0, 1 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 5 )]
|
||||
tile_data = PoolIntArray( 131065, 0, 0, 131066, 0, 0, 131067, 0, 0, 131068, 0, 0, 131069, 0, 0, 131070, 0, 0, 131071, 0, 0, 65536, 0, 0, 65537, 0, 0, 65538, 0, 0, 65539, 0, 0, 65540, 0, 0, 65541, 0, 0, 65542, 0, 0 )
|
||||
|
|
@ -169,13 +169,13 @@ tile_data = PoolIntArray( 131065, 0, 0, 131066, 0, 0, 131067, 0, 0, 131068, 0, 0
|
|||
z_index = -11
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -589828, 536870916, 3, -589827, 536870916, 0, -589826, 4, 1, -589825, 536870916, 0, -655360, 4, 3, -655359, 536870916, 3, -655358, 4, 0, -655357, 4, 3, -524294, 5, 2, -458763, 5, 2, -458762, 5, 0, -458761, 5, 0, -458760, 5, 0, -458758, -2147483643, 0, -458756, 4, 2, -458755, 4, 1, -458754, 4, 0, -458753, 4, 1, -524288, 4, 1, -524287, 536870916, 0, -524286, 4, 1, -524285, 536870916, 2, -524282, 5, 2, -524281, 5, 0, -524280, 5, 0, -524279, 5, 0, -524278, 536870917, 2, -393227, -1073741819, 0, -393219, 4, 2, -393218, 4, 3, -458751, 4, 2, -458750, 4, 3, -458742, 1610612741, 0, -327688, 1073741829, 2, -327687, 5, 0, -327686, 1610612741, 2, -327683, 4, 2, -327682, 4, 0, -327681, 4, 1, -393216, 4, 0, -393215, 4, 1, -393214, 536870916, 2, -393212, 1073741829, 2, -393211, 5, 0, -393210, 5, 0, -393209, 1610612741, 2, -262155, 5, 0, -262149, 5, 2, -262148, 5, 0, -262147, -1610612731, 2, -262145, 4, 2, -327680, 4, 1, -327679, 4, 3, -327670, -1073741819, 2, -327668, -1610612731, 2, -196619, 5, 0, -196616, 4, 2, -196615, 4, 3, -196613, 5, 0, -196612, 5, 0, -196611, 5, 0, -262140, 536870916, 3, -262139, 536870916, 2, -262136, 536870916, 3, -262135, 536870916, 2, -262132, 5, 0, -131085, 5, 0, -131083, -536870907, 2, -131080, 4, 2, -131079, 4, 3, -131077, -1073741819, 2, -131076, 5, 0, -131075, 1610612741, 2, -196607, 5, 2, -196606, 5, 0, -196605, -1610612731, 2, -196601, 4, 2, -196600, 4, 1, -196599, 536870916, 0, -196598, 4, 3, -196596, 1610612741, 2, -65549, 5, 0, -65540, 6, 0, -131071, -1073741819, 2, -131070, 5, 0, -131069, 1610612741, 2, -131065, 536870916, 3, -131064, 4, 3, -131063, 4, 2, -131062, 4, 0, -13, -1073741819, 2, -11, 5, 0, -10, 5, 0, -9, 536870917, 2, -5, -1073741819, 2, -4, 6, 0, -1, 4, 2, -65536, 4, 3, -65534, 6, 0, -65530, 536870916, 3, -65529, 536870916, 0, -65528, 536870916, 2, -65527, 536870916, 3, -65526, 4, 1, 65532, 6, 0, 65533, -536870907, 2, 2, 6, 0, 3, -536870907, 2, 131068, 6, 0, 65538, 6, 0, 65546, 4, 2, 65547, 4, 0, 65548, 4, 3, 131081, 4, 2, 131082, 536870916, 0, 131083, 4, 1, 131084, 4, 3, 262138, 1073741829, 2, 262139, 5, 0, 262140, 5, 0, 262141, 1610612741, 2, 196608, 1073741829, 2, 196609, 5, 0, 196610, 5, 0, 196611, 5, 0, 196612, 1610612741, 2 )
|
||||
brick_color = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
grass_color = Color( 1, 0.639216, 0, 1 )
|
||||
brick_color = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
grass_color = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 9 )]
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -851982, 536870912, 0, -851981, 536870912, 0, -851980, 536870912, 0, -851979, 536870912, 0, -851978, 536870912, 0, -851977, 536870912, 0, -851976, 536870912, 0, -851975, 536870912, 0, -851974, 536870912, 0, -851973, 536870912, 0, -851972, 536870912, 0, -851971, 536870912, 0, -851970, 536870912, 0, -851969, 536870912, 0, -917504, 536870912, 0, -917503, 536870912, 0, -917502, 536870912, 0, -917501, 536870912, 0, -917500, 536870912, 0, -917499, 536870912, 0, -917498, 536870912, 0, -917497, 536870912, 0, -917496, 536870912, 0, -917495, 536870912, 0, -917494, 536870912, 0, -917493, 536870912, 0, -917492, 536870912, 0, -917491, 536870912, 0, -786446, 536870912, 0, -786445, 536870912, 0, -786444, 536870912, 0, -786443, 536870912, 0, -786442, 536870912, 0, -786441, 536870912, 0, -786440, 536870912, 0, -786439, 536870912, 0, -786438, 536870912, 0, -786437, 536870912, 0, -786436, 536870912, 0, -786435, 536870912, 0, -786434, 536870912, 0, -786433, 536870912, 0, -851968, 536870912, 0, -851967, 536870912, 0, -851966, 536870912, 0, -851965, 536870912, 0, -851964, 536870912, 0, -851963, 536870912, 0, -851962, 536870912, 0, -851961, 536870912, 0, -851960, 536870912, 0, -851959, 536870912, 0, -851958, 536870912, 0, -851957, 536870912, 0, -851956, 536870912, 0, -851955, 536870912, 0, -720910, 536870912, 0, -720909, 536870912, 0, -720908, 536870912, 0, -720907, 536870912, 0, -720906, 536870912, 0, -720905, 536870912, 0, -720904, 536870912, 0, -720903, 536870912, 0, -720902, 536870912, 0, -720901, 536870912, 0, -720900, 536870912, 0, -720899, 536870912, 0, -720898, 536870912, 0, -720897, 536870912, 0, -786432, 536870912, 0, -786431, 536870912, 0, -786430, 536870912, 0, -786429, 536870912, 0, -786428, 536870912, 0, -786427, 536870912, 0, -786426, 536870912, 0, -786425, 536870912, 0, -786424, 536870912, 0, -786423, 536870912, 0, -786422, 536870912, 0, -786421, 536870912, 0, -786420, 536870912, 0, -786419, 536870912, 0, -655374, 536870912, 0, -655373, 536870912, 0, -655372, 536870912, 0, -655371, 536870912, 0, -655370, 536870912, 0, -655369, 536870912, 0, -655368, 536870912, 0, -655367, 536870912, 0, -655366, 536870912, 0, -655365, 536870912, 0, -655364, 536870912, 0, -655363, 536870912, 0, -655362, 536870912, 0, -655361, 536870912, 0, -720896, 536870912, 0, -720895, 536870912, 0, -720894, 536870912, 0, -720893, 536870912, 0, -720892, 536870912, 0, -720891, 536870912, 0, -720890, 536870912, 0, -720889, 536870912, 0, -720888, 536870912, 0, -720887, 536870912, 0, -720886, 536870912, 0, -720885, 536870912, 0, -720884, 536870912, 0, -720883, 536870912, 0, -589838, 536870912, 0, -589837, 536870912, 0, -589836, 536870912, 0, -589835, 536870912, 0, -589834, 536870912, 0, -589833, 536870912, 0, -589832, 536870912, 0, -589831, 536870912, 0, -589830, 536870912, 0, -589829, 536870912, 0, -589828, 536870912, 0, -589827, 536870912, 0, -589826, 536870912, 0, -589825, 536870912, 0, -655360, 536870912, 0, -655359, 536870912, 0, -655358, 536870912, 0, -655357, 536870912, 0, -655356, 536870912, 0, -655355, 536870912, 0, -655354, 536870912, 0, -655353, 536870912, 0, -655352, 536870912, 0, -655351, 536870912, 0, -655350, 536870912, 0, -655349, 536870912, 0, -655348, 536870912, 0, -655347, 536870912, 0, -524302, 536870912, 0, -524301, 536870912, 0, -524300, 536870912, 0, -524299, 536870912, 0, -524298, 536870912, 0, -524297, 536870912, 0, -524296, 536870912, 0, -524295, 536870912, 0, -524294, 536870912, 0, -524292, 2, 2, -524291, 536870914, 3, -524290, 2, 2, -524289, 536870914, 3, -589824, 536870914, 2, -589823, 2, 3, -589822, 2, 2, -589821, 536870914, 3, -589819, 536870912, 0, -589818, 536870912, 0, -589817, 536870912, 0, -589816, 536870912, 0, -589815, 536870912, 0, -589814, 536870912, 0, -589813, 536870912, 0, -589812, 536870912, 0, -589811, 536870912, 0, -458766, 536870912, 0, -458765, 536870912, 0, -458764, 536870912, 0, -458763, 536870912, 0, -458762, 536870912, 0, -458761, 536870912, 0, -458760, 536870912, 0, -458759, 536870912, 0, -458758, 536870912, 0, -524283, 536870912, 0, -524282, 536870912, 0, -524281, 536870912, 0, -524280, 536870912, 0, -524279, 536870912, 0, -524278, 536870912, 0, -524277, 536870912, 0, -524276, 536870912, 0, -524275, 536870912, 0, -393230, 536870912, 0, -393229, 536870912, 0, -393228, 536870912, 0, -393227, 536870912, 0, -458742, 536870912, 0, -458741, 536870912, 0, -458740, 536870912, 0, -458739, 536870912, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( 0, -24 )
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 13 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
0/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 14 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
4/modulate = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
5/name = "crate_tiles.png 5"
|
||||
5/texture = ExtResource( 11 )
|
||||
5/tex_offset = Vector2( 0, 0 )
|
||||
5/modulate = Color( 0.65098, 0.411765, 0, 1 )
|
||||
5/modulate = Color( 0.741176, 0.580392, 0, 1 )
|
||||
5/region = Rect2( 0, 16, 24, 8 )
|
||||
5/tile_mode = 2
|
||||
5/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
2/name = "solid_bricks.png 2"
|
||||
2/texture = ExtResource( 13 )
|
||||
2/tex_offset = Vector2( 0, 0 )
|
||||
2/modulate = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
2/modulate = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
2/region = Rect2( 0, 0, 32, 8 )
|
||||
2/tile_mode = 2
|
||||
2/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -153,14 +153,14 @@ __meta__ = {
|
|||
"_editor_description_": ""
|
||||
}
|
||||
palette = 1
|
||||
color_solid = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
color_back = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
color_grass = Color( 0.65098, 0.411765, 0, 1 )
|
||||
color_solid = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
color_back = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
color_grass = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 1 )
|
||||
tile_data = PoolIntArray( -1179665, 536870913, 0, -1179664, 536870913, 0, -1179663, 536870913, 0, -1179662, 536870913, 0, -1179661, 536870913, 0, -1179660, 536870913, 0, -1179659, 536870913, 0, -1179658, 536870913, 0, -1179657, 536870913, 0, -1179656, 536870913, 0, -1179655, 536870913, 0, -1179654, 536870913, 0, -1179653, 536870913, 0, -1179652, 536870913, 0, -1179651, 536870913, 0, -1179650, 536870913, 0, -1179649, 536870913, 0, -1245184, 536870913, 0, -1245183, 536870913, 0, -1245182, 536870913, 0, -1245181, 536870913, 0, -1245180, 536870913, 0, -1245179, 536870913, 0, -1245178, 536870913, 0, -1245177, 536870913, 0, -1245176, 536870913, 0, -1245175, 536870913, 0, -1245174, 536870913, 0, -1245173, 536870913, 0, -1245172, 536870913, 0, -1114129, 536870913, 0, -1179636, 536870913, 0, -1048593, 536870913, 0, -1114100, 536870913, 0, -983057, 536870913, 0, -1048564, 536870913, 0, -917521, 536870913, 0, -983028, 536870913, 0, -851985, 536870913, 0, -917492, 536870913, 0, -786449, 536870913, 0, -786440, 0, 1, -786439, 0, 0, -786438, 0, 1, -786437, 536870912, 0, -786436, 0, 1, -786435, 0, 1, -786434, 0, 0, -786433, 0, 1, -851968, 536870912, 0, -851967, 0, 1, -851966, 0, 1, -851965, 0, 1, -851964, 0, 0, -851963, 0, 1, -851960, 536870912, 0, -851959, 536870913, 0, -851958, 536870913, 0, -851957, 536870913, 0, -851956, 536870913, 0, -720913, 536870913, 0, -720904, 0, 0, -786424, 0, 1, -655377, 536870913, 0, -655368, 0, 1, -720888, 0, 0, -589841, 536870913, 0, -589837, 0, 1, -589836, 0, 0, -589835, 0, 1, -589834, 536870912, 0, -589833, 0, 1, -589832, 536870912, 0, -655352, 0, 1, -524305, 536870913, 0, -524301, 536870912, 0, -589816, 536870912, 0, -458769, 536870913, 0, -458765, 0, 1, -458756, 0, 1, -458755, 0, 0, -458754, 0, 1, -458753, 536870912, 0, -524288, 0, 1, -524287, 536870912, 0, -524286, 0, 1, -524280, 536870912, 0, -393233, 536870913, 0, -393232, 536870913, 0, -393231, 536870913, 0, -393230, 536870913, 0, -393229, 0, 0, -393228, 0, 1, -393227, 0, 1, -393226, 536870912, 0, -393220, 0, 0, -458744, 0, 1, -327690, 0, 1, -327684, 0, 1, -393210, 0, 0, -393209, 0, 1, -393208, 536870912, 0, -262154, 0, 0, -262153, 0, 1, -262152, 536870912, 0, -262151, 0, 1, -262150, 0, 0, -262149, 0, 1, -262148, 536870912, 0, -327673, 0, 0, -196618, 0, 1, -262137, 0, 1, -131084, 0, 0, -131083, 0, 1, -131082, 536870912, 0, -196601, 536870912, 0, -65548, 0, 1, -131068, 0, 0, -131067, 0, 1, -131066, 536870912, 0, -131065, 0, 1, -12, 0, 0, -65532, 0, 0, 65524, 0, 1, 65533, 0, 0, 65534, 0, 1, 65535, 536870912, 0, 0, 0, 1, 1, 0, 0, 2, 536870912, 1, 3, 536870912, 0, 4, 536870912, 1, 131060, 536870912, 0, 131069, 0, 1, 196596, 0, 1, 196597, 0, 0, 196598, 0, 1, 196599, 0, 0, 196600, 0, 1, 196601, 536870912, 0, 196602, 0, 1, 196603, 0, 0, 196604, 0, 1, 196605, 536870912, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="SpikeTileMap" parent="." instance=ExtResource( 5 )]
|
||||
tile_data = PoolIntArray( -524292, 0, 0, -524291, 0, 0, -524290, 0, 0, -524289, 0, 0, -589824, 0, 0, -589823, 0, 0, -589822, 0, 0, -327689, 0, 0, -327688, 0, 0, -327687, 0, 0, -327686, 0, 0, -327685, 0, 0, -196604, 0, 0, -196603, 0, 0, -196602, 0, 0, -3, 0, 0, -2, 0, 0, -1, 0, 0, -65536, 0, 0, -65535, 0, 0, -65534, 0, 0, -65533, 0, 0 )
|
||||
|
|
@ -169,13 +169,13 @@ tile_data = PoolIntArray( -524292, 0, 0, -524291, 0, 0, -524290, 0, 0, -524289,
|
|||
z_index = -11
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -786442, 536870916, 3, -786441, 536870916, 0, -720906, 536870916, 3, -720905, 536870916, 1, -720903, 536870916, 1, -720902, 536870916, 2, -720900, 1073741829, 2, -720899, 5, 0, -720898, 1610612741, 2, -786431, 1073741829, 2, -786430, 5, 0, -786429, 5, 0, -786428, 1610612741, 2, -655374, 5, 0, -655373, 1610612741, 0, -655372, 536870917, 2, -655370, 4, 2, -655369, 4, 0, -655367, 536870916, 0, -655366, 4, 3, -589838, -1610612731, 0, -589831, 536870916, 2, -655360, 5, 0, -524302, -1073741819, 2, -524299, 4, 2, -524298, 4, 1, -524297, 4, 3, -589824, 6, 0, -589819, 536870916, 3, -589818, 4, 1, -589817, 4, 3, -458763, 4, 2, -458762, 536870916, 0, -458761, 4, 3, -458759, 4, 2, -458758, 4, 3, -524283, 536870916, 3, -524282, 536870916, 0, -524281, 4, 1, -393223, 4, 2, -393222, 4, 3, -393219, 5, 0, -393218, 5, 0, -393217, 1610612741, 2, -458747, 4, 2, -458746, 4, 1, -458745, 4, 0, -458743, 4, 3, -327692, 4, 2, -327691, 536870916, 0, -327683, 5, 0, -393215, 5, 2, -393214, 5, 0, -393213, -1610612731, 2, -393211, 4, 1, -393207, 4, 1, -262156, 536870916, 3, -262155, 536870916, 1, -262147, -536870907, 2, -327679, -1073741819, 2, -327678, 5, 0, -327677, 1610612741, 2, -327675, 4, 2, -327674, 4, 1, -327672, 4, 1, -327671, 4, 0, -196620, 4, 2, -196619, 4, 0, -262142, 6, 0, -262136, 536870916, 0, -262135, 536870916, 2, -131079, 5, 2, -131078, 5, 0, -131077, -1610612731, 2, -131073, 5, 2, -196606, 6, 0, -196605, -536870907, 2, -65549, -2147483643, 2, -65547, 4, 0, -65546, 536870916, 1, -65545, 4, 3, -65543, 5, 0, -65542, 5, 0, -65541, 5, 0, -65537, 6, 0, -131071, -1073741819, 2, -131070, 6, 0, -13, -1073741819, 2, -11, 536870916, 2, -10, 4, 2, -9, 536870916, 2, -7, -1073741819, 2, -6, 5, 0, -5, 1610612741, 2, -1, 6, 0, -65534, 6, 0, 65525, 4, 3, 65530, 6, 0, 131062, 5, 2, 131063, 5, 0, 131064, 536870917, 2, 131066, 6, 0, 131071, 1073741829, 2, 65536, 5, 0, 65537, 5, 0, 65538, 5, 0, 65539, 1610612741, 2, 262136, 1073741829, 2, 262137, 5, 0, 262138, 1610612741, 2 )
|
||||
brick_color = Color( 0.368627, 0.305882, 0.368627, 1 )
|
||||
grass_color = Color( 0.65098, 0.411765, 0, 1 )
|
||||
brick_color = Color( 0.239216, 0.109804, 0.184314, 1 )
|
||||
grass_color = Color( 0.741176, 0.580392, 0, 1 )
|
||||
|
||||
[node name="ObscureMap" parent="." instance=ExtResource( 9 )]
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -1114128, 536870912, 0, -1114127, 536870912, 0, -1114126, 536870912, 0, -1114125, 536870912, 0, -1114124, 536870912, 0, -1114123, 536870912, 0, -1114122, 536870912, 0, -1114121, 536870912, 0, -1114120, 536870912, 0, -1114119, 536870912, 0, -1114118, 536870912, 0, -1114117, 536870912, 0, -1114116, 536870912, 0, -1114115, 536870912, 0, -1114114, 536870912, 0, -1114113, 536870912, 0, -1179648, 536870912, 0, -1179647, 536870912, 0, -1179646, 536870912, 0, -1179645, 536870912, 0, -1179644, 536870912, 0, -1179643, 536870912, 0, -1179642, 536870912, 0, -1179641, 536870912, 0, -1179640, 536870912, 0, -1179639, 536870912, 0, -1179638, 536870912, 0, -1179637, 536870912, 0, -1048592, 536870912, 0, -1048591, 536870912, 0, -1048590, 536870912, 0, -1048589, 536870912, 0, -1048588, 536870912, 0, -1048587, 536870912, 0, -1048586, 536870912, 0, -1048585, 536870912, 0, -1048584, 536870912, 0, -1048583, 536870912, 0, -1048582, 536870912, 0, -1048581, 536870912, 0, -1048580, 536870912, 0, -1048579, 536870912, 0, -1048578, 536870912, 0, -1048577, 536870912, 0, -1114112, 536870912, 0, -1114111, 536870912, 0, -1114110, 536870912, 0, -1114109, 536870912, 0, -1114108, 536870912, 0, -1114107, 536870912, 0, -1114106, 536870912, 0, -1114105, 536870912, 0, -1114104, 536870912, 0, -1114103, 536870912, 0, -1114102, 536870912, 0, -1114101, 536870912, 0, -983056, 536870912, 0, -983055, 536870912, 0, -983054, 536870912, 0, -983053, 536870912, 0, -983052, 536870912, 0, -983051, 536870912, 0, -983050, 536870912, 0, -983049, 536870912, 0, -983048, 536870912, 0, -983047, 536870912, 0, -983046, 536870912, 0, -983045, 536870912, 0, -983044, 536870912, 0, -983043, 536870912, 0, -983042, 536870912, 0, -983041, 536870912, 0, -1048576, 536870912, 0, -1048575, 536870912, 0, -1048574, 536870912, 0, -1048573, 536870912, 0, -1048572, 536870912, 0, -1048571, 536870912, 0, -1048570, 536870912, 0, -1048569, 536870912, 0, -1048568, 536870912, 0, -1048567, 536870912, 0, -1048566, 536870912, 0, -1048565, 536870912, 0, -917520, 536870912, 0, -917519, 536870912, 0, -917518, 536870912, 0, -917517, 536870912, 0, -917516, 536870912, 0, -917515, 536870912, 0, -917514, 536870912, 0, -917513, 536870912, 0, -917512, 536870912, 0, -917511, 536870912, 0, -917510, 536870912, 0, -917509, 536870912, 0, -917508, 536870912, 0, -917507, 536870912, 0, -917506, 536870912, 0, -917505, 536870912, 0, -983040, 536870912, 0, -983039, 536870912, 0, -983038, 536870912, 0, -983037, 536870912, 0, -983036, 536870912, 0, -983035, 536870912, 0, -983034, 536870912, 0, -983033, 536870912, 0, -983032, 536870912, 0, -983031, 536870912, 0, -983030, 536870912, 0, -983029, 536870912, 0, -851984, 536870912, 0, -851983, 536870912, 0, -851982, 536870912, 0, -851981, 536870912, 0, -851980, 536870912, 0, -851979, 536870912, 0, -851978, 536870912, 0, -851977, 536870912, 0, -851976, 536870912, 0, -851975, 536870912, 0, -851974, 536870912, 0, -851973, 536870912, 0, -851972, 536870912, 0, -851971, 536870912, 0, -851970, 536870912, 0, -851969, 536870912, 0, -917504, 536870912, 0, -917503, 536870912, 0, -917502, 536870912, 0, -917501, 536870912, 0, -917500, 536870912, 0, -917499, 536870912, 0, -917498, 536870912, 0, -917497, 536870912, 0, -917496, 536870912, 0, -917495, 536870912, 0, -917494, 536870912, 0, -917493, 536870912, 0, -786448, 536870912, 0, -786447, 536870912, 0, -786446, 536870912, 0, -786445, 536870912, 0, -786444, 536870912, 0, -786443, 536870912, 0, -786442, 536870912, 0, -786441, 536870912, 0, -851962, 536870914, 2, -851961, 2, 3, -720912, 536870912, 0, -720911, 536870912, 0, -720910, 536870912, 0, -720909, 536870912, 0, -720908, 536870912, 0, -720907, 536870912, 0, -720906, 536870912, 0, -720905, 536870912, 0, -655376, 536870912, 0, -655375, 536870912, 0, -655374, 536870912, 0, -655373, 536870912, 0, -655372, 536870912, 0, -655371, 536870912, 0, -655370, 536870912, 0, -655369, 536870912, 0, -589840, 536870912, 0, -589839, 536870912, 0, -589838, 536870912, 0, -524304, 536870912, 0, -524303, 536870912, 0, -524302, 536870912, 0, -458768, 536870912, 0, -458767, 536870912, 0, -458766, 536870912, 0 )
|
||||
tile_color = Color( 0.780392, 0.482353, 0.482353, 1 )
|
||||
tile_color = Color( 0.768627, 0.407843, 0.454902, 1 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( -16, -32 )
|
||||
|
|
|
|||
15
src/menu/Blink.gd
Normal file
15
src/menu/Blink.gd
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
extends CanvasItem
|
||||
|
||||
export var blink_on := 0.3
|
||||
export var blink_off := 0.2
|
||||
var blink_clock := 0.0
|
||||
export var color_blink : PoolColorArray = ["ff004d", "ff77a8"]
|
||||
export var node_path : NodePath = "."
|
||||
onready var node := get_node_or_null(node_path)
|
||||
|
||||
func _physics_process(delta):
|
||||
blink_clock -= delta
|
||||
if blink_clock < -blink_off:
|
||||
blink_clock = blink_on
|
||||
if node:
|
||||
node.modulate = color_blink[int(blink_clock > 0.0)]
|
||||
|
|
@ -19,11 +19,6 @@ var swatches = []
|
|||
onready var player_mat : ShaderMaterial = $Player/Sprite.material
|
||||
var is_input := true
|
||||
|
||||
export var blink_on := 0.3
|
||||
export var blink_off := 0.2
|
||||
var blink_clock := 0.0
|
||||
export var color_blink : PoolColorArray = ["ff004d", "ff77a8"]
|
||||
|
||||
func _ready():
|
||||
# setup rows & columns
|
||||
rows = []
|
||||
|
|
@ -100,9 +95,10 @@ func _input(event):
|
|||
elif cursor_y == rows.size() - 1:
|
||||
if is_jump:
|
||||
is_input = false
|
||||
Shared.wipe_scene(Shared.level_select_path)
|
||||
Shared.username = name_label.text.to_lower()
|
||||
Shared.player_colors = colors.duplicate()
|
||||
Shared.is_save = true
|
||||
Shared.wipe_scene(Shared.level_select_path)
|
||||
Audio.play("menu_bell", 0.8, 1.2)
|
||||
elif is_action:
|
||||
Audio.play("menu_scroll2", 0.8, 1.2)
|
||||
|
|
@ -133,10 +129,3 @@ func fill_swatches(_row := cursor_y -1):
|
|||
var offset = [-2, -1, 0, 1, 2]
|
||||
for i in 5:
|
||||
swatches[_row][i].color = Shared.palette[wrapi(colors[_row] + offset[i], 0, Shared.palette.size())]
|
||||
|
||||
func _physics_process(delta):
|
||||
# blink
|
||||
blink_clock -= delta
|
||||
if blink_clock < -blink_off:
|
||||
blink_clock = blink_on
|
||||
cursors_parent.modulate = color_blink[int(blink_clock > 0.0)]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=24 format=2]
|
||||
[gd_scene load_steps=25 format=2]
|
||||
|
||||
[ext_resource path="res://src/stage/SolidTileMap.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://media/image/player_swap.png" type="Texture" id=2]
|
||||
|
|
@ -13,12 +13,13 @@
|
|||
[ext_resource path="res://media/image/bricks.png" type="Texture" id=11]
|
||||
[ext_resource path="res://media/image/solid_bricks.png" type="Texture" id=12]
|
||||
[ext_resource path="res://media/image/8pixel.png" type="Texture" id=13]
|
||||
[ext_resource path="res://src/menu/Blink.gd" type="Script" id=14]
|
||||
|
||||
[sub_resource type="TileSet" id=18]
|
||||
[sub_resource type="TileSet" id=21]
|
||||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 12 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.745098, 0.0705882, 0.313726, 1 )
|
||||
0/modulate = Color( 0.760784, 0.764706, 0.780392, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
@ -51,7 +52,7 @@
|
|||
1/shapes = [ ]
|
||||
1/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=19]
|
||||
[sub_resource type="TileSet" id=22]
|
||||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 11 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
|
|
@ -238,13 +239,13 @@ font_data = ExtResource( 7 )
|
|||
script = ExtResource( 8 )
|
||||
|
||||
[node name="SolidTileMap" parent="." instance=ExtResource( 1 )]
|
||||
tile_set = SubResource( 18 )
|
||||
tile_set = SubResource( 21 )
|
||||
tile_data = PoolIntArray( 458729, 0, 1, 458730, 0, 1, 458731, 0, 1, 458732, 0, 1, 458733, 536870912, 0, 458734, 0, 1, 458735, 0, 0, 458736, 0, 1, 458737, 536870912, 0, 458738, 536870912, 1, 524274, 0, 0, 589810, 536870912, 1, 655346, 536870912, 0 )
|
||||
|
||||
[node name="DetailTileMap" parent="." instance=ExtResource( 4 )]
|
||||
z_index = -11
|
||||
tile_set = SubResource( 19 )
|
||||
tile_data = PoolIntArray( 65516, 5, 0, 65517, 5, 0, 65518, 5, 0, 65519, 5, 0, 65520, 5, 0, 131052, 5, 0, 131053, 5, 0, 131054, 5, 0, 131055, 5, 0, 131056, 5, 0, 196588, 1073741829, 2, 196589, 5, 0, 196590, 5, 0, 196591, 5, 0, 196592, 1610612741, 2, 262125, 1073741829, 2, 262126, 5, 0, 262127, 1610612741, 2, 327662, 5, 1, 393198, 5, 1, 524273, 1073741829, 2, 524275, -1610612731, 2, 589811, -1610612731, 0, 655347, -1610612731, 0 )
|
||||
tile_set = SubResource( 22 )
|
||||
tile_data = PoolIntArray( 65516, 5, 0, 65517, 5, 0, 65518, 5, 0, 65519, 5, 0, 65520, 5, 0, 131052, 5, 0, 131053, 5, 0, 131054, 5, 0, 131055, 5, 0, 131056, 5, 0, 196588, 1073741829, 2, 196589, 5, 0, 196590, 5, 0, 196591, 5, 0, 196592, 1610612741, 2, 262125, 1073741829, 2, 262126, 5, 0, 262127, 1610612741, 2, 327662, 6, 0, 393198, 6, 0, 524273, 1073741829, 2, 524275, -1610612731, 2, 589811, -1610612731, 0, 655347, -1610612731, 0 )
|
||||
|
||||
[node name="GameCamera" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( -92, 48 )
|
||||
|
|
@ -344,6 +345,7 @@ size_flags_vertical = 4
|
|||
|
||||
[node name="Cursors" type="Control" parent="Menu"]
|
||||
modulate = Color( 1, 0, 0.301961, 1 )
|
||||
script = ExtResource( 14 )
|
||||
|
||||
[node name="Arrows" type="Control" parent="Menu/Cursors"]
|
||||
margin_left = 133.0
|
||||
|
|
|
|||
|
|
@ -3,34 +3,47 @@ extends Node2D
|
|||
onready var main_menu := $Control/Main
|
||||
onready var quit_menu := $Control/Quit
|
||||
onready var slot_menu := $Control/Slot
|
||||
onready var open_menu := $Control/Open
|
||||
onready var erase_menu := $Control/Erase
|
||||
onready var menu_stuff := main_menu.get_children()
|
||||
onready var cursor_node := $Control/Cursor
|
||||
export var open_player_path : NodePath = ""
|
||||
onready var open_player_mat : ShaderMaterial = get_node(open_player_path).material
|
||||
|
||||
export var demo_player_path : NodePath = ""
|
||||
onready var demo_player_mat : ShaderMaterial = get_node(demo_player_path).sprite_mat
|
||||
|
||||
var cursor := 0 setget set_cursor
|
||||
var menu_items := []
|
||||
var main_items := ["play", "creator", "options", "credits"]
|
||||
var main_items := ["play", "options", "credits"]
|
||||
var quit_items := ["yes", "no"]
|
||||
var slot_items := ["slot", "slot", "slot"]
|
||||
var open_items := ["load", "creator", "erase"]
|
||||
var erase_items := ["really erase", "no erase"]
|
||||
|
||||
var menu_name := "main"
|
||||
var menu_last := menu_name
|
||||
|
||||
var is_input = true
|
||||
|
||||
export var blink_on := 0.3
|
||||
export var blink_off := 0.2
|
||||
var blink_clock := 0.0
|
||||
export var cursor_offset := Vector2.ZERO
|
||||
export var cursor_expand := Vector2.ZERO
|
||||
|
||||
export var color_select := Color.white
|
||||
export var color_deselect := Color(1,1,1, 0.7)
|
||||
export var color_blink : PoolColorArray = ["ff004d", "ff77a8"]
|
||||
|
||||
func _enter_tree():
|
||||
randomize()
|
||||
Shared.player_colors = Shared.preset_palettes[randi() % Shared.preset_palettes.size()]
|
||||
|
||||
func _ready():
|
||||
switch_menu("main", true)
|
||||
|
||||
randomize()
|
||||
Player.set_palette(demo_player_mat, Shared.pick_player_colors())
|
||||
Shared.load_slots()
|
||||
|
||||
setup_slots()
|
||||
|
||||
switch_menu(Shared.last_menu, true)
|
||||
self.cursor = Shared.last_cursor
|
||||
|
||||
|
||||
func setup_slots():
|
||||
var slot_items := slot_menu.get_children()
|
||||
for i in 3:
|
||||
var si = slot_items[i]
|
||||
|
|
@ -59,10 +72,17 @@ func _ready():
|
|||
Player.set_palette(player_mat, sd["player_colors"])
|
||||
|
||||
func _input(event):
|
||||
if !is_input:
|
||||
return
|
||||
if !is_input or Wipe.is_wipe: return
|
||||
|
||||
if event.is_action_pressed("action"):
|
||||
switch_menu("quit" if menu_items == main_items else "main")
|
||||
if menu_items == open_items:
|
||||
Player.set_palette(demo_player_mat, Shared.pick_player_colors())
|
||||
var s = "main"
|
||||
match menu_items:
|
||||
main_items: s = "quit"
|
||||
open_items: s = "slot"
|
||||
erase_items: s = "open"
|
||||
switch_menu(s)
|
||||
elif event.is_action_pressed("jump"):
|
||||
menu_select()
|
||||
else:
|
||||
|
|
@ -72,14 +92,8 @@ func _input(event):
|
|||
self.cursor += -1 if up else 1
|
||||
Audio.play("menu_scroll", 0.8, 1.2)
|
||||
|
||||
func _physics_process(delta):
|
||||
# blink
|
||||
blink_clock -= delta
|
||||
if blink_clock < -blink_off:
|
||||
blink_clock = blink_on
|
||||
cursor_node.modulate = color_blink[int(blink_clock > 0.0)]
|
||||
|
||||
func write_menu():
|
||||
yield(get_tree(), "idle_frame")
|
||||
cursor_node.rect_global_position = menu_stuff[cursor].rect_global_position + cursor_offset
|
||||
cursor_node.rect_size = menu_stuff[cursor].rect_size + cursor_expand
|
||||
|
||||
|
|
@ -87,23 +101,20 @@ func write_menu():
|
|||
menu_stuff[i].modulate = color_select if i == cursor else color_deselect
|
||||
|
||||
func menu_select(tag : String = menu_items[cursor].to_lower()):
|
||||
Shared.last_cursor = cursor
|
||||
match tag:
|
||||
"play":
|
||||
switch_menu("slot")
|
||||
"creator":
|
||||
Shared.wipe_scene(Shared.creator_path)
|
||||
is_input = false
|
||||
Audio.play("menu_play", 0.9, 1.1)
|
||||
"options":
|
||||
Shared.wipe_scene(Shared.options_menu_path)
|
||||
is_input = false
|
||||
Audio.play("menu_options", 0.9, 1.1)
|
||||
"credits":
|
||||
Shared.wipe_scene(Shared.credits_path)
|
||||
is_input = false
|
||||
Audio.play("menu_pick", 0.9, 1.1)
|
||||
"yes":
|
||||
is_input = false
|
||||
Audio.play("menu_yes", 0.9, 1.1)
|
||||
if OS.get_name() == "HTML5":
|
||||
Shared.wipe_scene(Shared.splash_path)
|
||||
|
|
@ -113,33 +124,68 @@ func menu_select(tag : String = menu_items[cursor].to_lower()):
|
|||
"no":
|
||||
switch_menu("main")
|
||||
"slot":
|
||||
is_input = false
|
||||
Audio.play("menu_play", 0.9, 1.1)
|
||||
Shared.last_slot = cursor
|
||||
|
||||
if Shared.save_data[cursor].empty():
|
||||
Shared.load_save(cursor)
|
||||
Shared.wipe_scene(Shared.creator_path)
|
||||
else:
|
||||
Shared.load_slot(cursor)
|
||||
Shared.wipe_scene(Shared.level_select_path)
|
||||
Audio.play("menu_play", 0.9, 1.1)
|
||||
switch_menu("open")
|
||||
|
||||
"load":
|
||||
Shared.wipe_scene(Shared.level_select_path)
|
||||
"erase":
|
||||
switch_menu("erase")
|
||||
"really erase":
|
||||
Shared.delete_slot(Shared.last_slot)
|
||||
Shared.load_save(Shared.last_slot)
|
||||
setup_slots()
|
||||
switch_menu("slot")
|
||||
"no erase":
|
||||
switch_menu("open")
|
||||
|
||||
|
||||
func switch_menu(arg, silent := false):
|
||||
var s = ["quit", "main", "slot"]
|
||||
var items = [quit_items, main_items, slot_items]
|
||||
var node = [quit_menu, main_menu, slot_menu]
|
||||
var audio = ["pick", "exit", "pick"]
|
||||
for i in 3:
|
||||
func switch_menu(arg, silent := false, _cursor := 0):
|
||||
var s = ["quit", "main", "slot", "open", "erase"]
|
||||
var items = [quit_items, main_items, slot_items, open_items, erase_items]
|
||||
var node = [quit_menu, main_menu, slot_menu, open_menu, erase_menu]
|
||||
var audio = ["pick", "exit", "pick", "pick", "pick"]
|
||||
var x = -1
|
||||
for i in s.size():
|
||||
node[i].visible = arg == s[i]
|
||||
if arg == s[i]:
|
||||
menu_items = items[i]
|
||||
menu_stuff = node[i].get_children()
|
||||
if !silent:
|
||||
Audio.play("menu_" + audio[i], 0.9, 1.1)
|
||||
x = i
|
||||
|
||||
self.cursor = 1 if arg == "quit" else 0
|
||||
|
||||
func find_cursor(arg := ""):
|
||||
if is_input and menu_items.has(arg):
|
||||
self.cursor = menu_items.find(arg)
|
||||
menu_select()
|
||||
if x > -1:
|
||||
menu_items = items[x]
|
||||
menu_stuff = node[x].get_children()
|
||||
|
||||
menu_last = menu_name
|
||||
menu_name = arg
|
||||
|
||||
if !silent:
|
||||
Audio.play("menu_" + audio[x], 0.9, 1.1)
|
||||
|
||||
match menu_name:
|
||||
"quit":
|
||||
_cursor = 1
|
||||
"erase":
|
||||
_cursor = 1
|
||||
"slot":
|
||||
_cursor = Shared.last_slot
|
||||
Shared.map_select = 0
|
||||
"open":
|
||||
Shared.load_save(Shared.last_slot)
|
||||
Player.set_palette(open_player_mat, Shared.player_colors)
|
||||
Player.set_palette(demo_player_mat, Shared.player_colors)
|
||||
if menu_last == "erase":
|
||||
_cursor = 2
|
||||
"main":
|
||||
Shared.last_slot = -1
|
||||
|
||||
self.cursor = _cursor
|
||||
Shared.last_menu = arg
|
||||
|
||||
func set_cursor(arg := 0):
|
||||
cursor = clamp(arg, 0, menu_items.size() - 1)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=31 format=2]
|
||||
[gd_scene load_steps=34 format=2]
|
||||
|
||||
[ext_resource path="res://media/image/creator.png" type="Texture" id=1]
|
||||
[ext_resource path="res://media/image/crate_tiles.png" type="Texture" id=2]
|
||||
|
|
@ -20,6 +20,8 @@
|
|||
[ext_resource path="res://media/image/bricks.png" type="Texture" id=18]
|
||||
[ext_resource path="res://media/image/player_swap.png" type="Texture" id=19]
|
||||
[ext_resource path="res://media/image/diamond8.png" type="Texture" id=20]
|
||||
[ext_resource path="res://src/menu/Blink.gd" type="Script" id=21]
|
||||
[ext_resource path="res://src/actor/Exit.tscn" type="PackedScene" id=22]
|
||||
[ext_resource path="res://media/font/QuinqueFive.ttf" type="DynamicFontData" id=24]
|
||||
|
||||
[sub_resource type="DynamicFont" id=3]
|
||||
|
|
@ -104,6 +106,19 @@ shader_param/skin_swap = Color( 1, 0.8, 0.666667, 1 )
|
|||
shader_param/suit_swap = Color( 0.87451, 0.14902, 0.14902, 1 )
|
||||
shader_param/shoe_swap = Color( 0.0901961, 0.482353, 0.788235, 1 )
|
||||
|
||||
[sub_resource type="ShaderMaterial" id=15]
|
||||
shader = SubResource( 8 )
|
||||
shader_param/hat = Color( 1, 0, 0, 1 )
|
||||
shader_param/eye = Color( 0, 1, 0, 1 )
|
||||
shader_param/skin = Color( 0, 0, 1, 1 )
|
||||
shader_param/suit = Color( 1, 1, 0, 1 )
|
||||
shader_param/shoe = Color( 1, 0, 1, 1 )
|
||||
shader_param/hat_swap = Color( 0.0980392, 0.984314, 0.192157, 1 )
|
||||
shader_param/eye_swap = Color( 0, 0.0862745, 1, 1 )
|
||||
shader_param/skin_swap = Color( 1, 0.843137, 0, 1 )
|
||||
shader_param/suit_swap = Color( 0, 0.71875, 1, 1 )
|
||||
shader_param/shoe_swap = Color( 0, 0.0862745, 1, 1 )
|
||||
|
||||
[sub_resource type="DynamicFont" id=4]
|
||||
size = 48
|
||||
extra_spacing_top = -11
|
||||
|
|
@ -215,9 +230,11 @@ script = ExtResource( 3 )
|
|||
__meta__ = {
|
||||
"_edit_horizontal_guides_": [ ]
|
||||
}
|
||||
open_player_path = NodePath("Control/Open/1/Player/Sprite")
|
||||
demo_player_path = NodePath("Stage/Actors/Player")
|
||||
cursor_offset = Vector2( -2, 0 )
|
||||
cursor_expand = Vector2( 4, 0 )
|
||||
color_deselect = Color( 1, 1, 1, 0.701961 )
|
||||
color_deselect = Color( 0.8, 0.8, 0.8, 1 )
|
||||
|
||||
[node name="Control" type="Control" parent="."]
|
||||
margin_left = -24.0
|
||||
|
|
@ -231,22 +248,23 @@ margin_left = 5.0
|
|||
margin_top = 37.0
|
||||
margin_right = 47.0
|
||||
margin_bottom = 47.0
|
||||
script = ExtResource( 21 )
|
||||
|
||||
[node name="Main" type="VBoxContainer" parent="Control"]
|
||||
visible = false
|
||||
margin_left = 4.0
|
||||
margin_top = 32.0
|
||||
margin_right = 68.0
|
||||
margin_right = 72.0
|
||||
margin_bottom = 104.0
|
||||
custom_constants/separation = 5
|
||||
alignment = 1
|
||||
|
||||
[node name="Item" type="HBoxContainer" parent="Control/Main"]
|
||||
margin_top = 4.0
|
||||
margin_right = 43.0
|
||||
margin_bottom = 16.0
|
||||
margin_left = 14.0
|
||||
margin_top = 13.0
|
||||
margin_right = 57.0
|
||||
margin_bottom = 25.0
|
||||
rect_min_size = Vector2( 0, 12 )
|
||||
size_flags_horizontal = 0
|
||||
size_flags_horizontal = 4
|
||||
custom_constants/separation = 2
|
||||
|
||||
[node name="Image" type="Control" parent="Control/Main/Item"]
|
||||
|
|
@ -270,41 +288,13 @@ custom_fonts/font = SubResource( 3 )
|
|||
text = "play"
|
||||
uppercase = true
|
||||
|
||||
[node name="Item4" type="HBoxContainer" parent="Control/Main"]
|
||||
margin_top = 21.0
|
||||
margin_right = 42.0
|
||||
margin_bottom = 33.0
|
||||
rect_min_size = Vector2( 0, 12 )
|
||||
size_flags_horizontal = 0
|
||||
custom_constants/separation = 2
|
||||
|
||||
[node name="Image" type="Control" parent="Control/Main/Item4"]
|
||||
margin_right = 8.0
|
||||
margin_bottom = 12.0
|
||||
rect_min_size = Vector2( 8, 8 )
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="Control/Main/Item4/Image"]
|
||||
position = Vector2( 0, 2 )
|
||||
texture = ExtResource( 1 )
|
||||
centered = false
|
||||
hframes = 4
|
||||
frame = 2
|
||||
|
||||
[node name="Label" type="Label" parent="Control/Main/Item4"]
|
||||
margin_left = 10.0
|
||||
margin_top = 2.0
|
||||
margin_right = 42.0
|
||||
margin_bottom = 10.0
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "char"
|
||||
uppercase = true
|
||||
|
||||
[node name="Item2" type="HBoxContainer" parent="Control/Main"]
|
||||
margin_top = 38.0
|
||||
margin_right = 58.0
|
||||
margin_bottom = 50.0
|
||||
margin_left = 7.0
|
||||
margin_top = 30.0
|
||||
margin_right = 65.0
|
||||
margin_bottom = 42.0
|
||||
rect_min_size = Vector2( 0, 12 )
|
||||
size_flags_horizontal = 0
|
||||
size_flags_horizontal = 4
|
||||
custom_constants/separation = 2
|
||||
|
||||
[node name="Image" type="Control" parent="Control/Main/Item2"]
|
||||
|
|
@ -330,11 +320,12 @@ text = "option"
|
|||
uppercase = true
|
||||
|
||||
[node name="Item3" type="HBoxContainer" parent="Control/Main"]
|
||||
margin_top = 55.0
|
||||
margin_right = 58.0
|
||||
margin_bottom = 67.0
|
||||
margin_left = 7.0
|
||||
margin_top = 47.0
|
||||
margin_right = 65.0
|
||||
margin_bottom = 59.0
|
||||
rect_min_size = Vector2( 0, 12 )
|
||||
size_flags_horizontal = 0
|
||||
size_flags_horizontal = 4
|
||||
custom_constants/separation = 2
|
||||
|
||||
[node name="Image" type="Control" parent="Control/Main/Item3"]
|
||||
|
|
@ -361,19 +352,19 @@ uppercase = true
|
|||
|
||||
[node name="Quit" type="VBoxContainer" parent="Control"]
|
||||
visible = false
|
||||
margin_left = 12.0
|
||||
margin_top = 32.0
|
||||
margin_right = 81.0
|
||||
margin_right = 72.0
|
||||
margin_bottom = 104.0
|
||||
custom_constants/separation = 9
|
||||
alignment = 1
|
||||
|
||||
[node name="Label" type="Label" parent="Control/Quit"]
|
||||
margin_top = 21.0
|
||||
margin_right = 42.0
|
||||
margin_bottom = 29.0
|
||||
rect_min_size = Vector2( 42, 0 )
|
||||
size_flags_horizontal = 0
|
||||
margin_left = 15.0
|
||||
margin_top = 19.0
|
||||
margin_right = 57.0
|
||||
margin_bottom = 31.0
|
||||
rect_min_size = Vector2( 42, 12 )
|
||||
size_flags_horizontal = 4
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "quit?"
|
||||
align = 1
|
||||
|
|
@ -381,11 +372,12 @@ valign = 1
|
|||
uppercase = true
|
||||
|
||||
[node name="No" type="Label" parent="Control/Quit"]
|
||||
margin_top = 38.0
|
||||
margin_right = 18.0
|
||||
margin_bottom = 50.0
|
||||
margin_left = 27.0
|
||||
margin_top = 40.0
|
||||
margin_right = 45.0
|
||||
margin_bottom = 52.0
|
||||
rect_min_size = Vector2( 18, 12 )
|
||||
size_flags_horizontal = 0
|
||||
size_flags_horizontal = 4
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "no"
|
||||
align = 1
|
||||
|
|
@ -393,6 +385,7 @@ valign = 1
|
|||
uppercase = true
|
||||
|
||||
[node name="Slot" type="VBoxContainer" parent="Control"]
|
||||
visible = false
|
||||
margin_left = 4.0
|
||||
margin_top = 32.0
|
||||
margin_right = 64.0
|
||||
|
|
@ -601,6 +594,157 @@ custom_fonts/font = SubResource( 3 )
|
|||
text = "96"
|
||||
uppercase = true
|
||||
|
||||
[node name="Open" type="VBoxContainer" parent="Control"]
|
||||
visible = false
|
||||
margin_left = 4.0
|
||||
margin_top = 32.0
|
||||
margin_right = 68.0
|
||||
margin_bottom = 104.0
|
||||
custom_constants/separation = 5
|
||||
alignment = 1
|
||||
|
||||
[node name="0" type="HBoxContainer" parent="Control/Open"]
|
||||
margin_left = 13.0
|
||||
margin_top = 13.0
|
||||
margin_right = 51.0
|
||||
margin_bottom = 25.0
|
||||
rect_min_size = Vector2( 0, 12 )
|
||||
size_flags_horizontal = 4
|
||||
custom_constants/separation = 2
|
||||
|
||||
[node name="Image" type="Control" parent="Control/Open/0"]
|
||||
margin_right = 12.0
|
||||
margin_bottom = 12.0
|
||||
rect_min_size = Vector2( 12, 12 )
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="Control/Open/0/Image"]
|
||||
visible = false
|
||||
position = Vector2( 0, 2 )
|
||||
texture = ExtResource( 16 )
|
||||
centered = false
|
||||
hframes = 4
|
||||
vframes = 4
|
||||
|
||||
[node name="Exit" parent="Control/Open/0/Image" instance=ExtResource( 22 )]
|
||||
position = Vector2( 3, 3 )
|
||||
|
||||
[node name="Label" type="Label" parent="Control/Open/0"]
|
||||
margin_left = 14.0
|
||||
margin_top = 2.0
|
||||
margin_right = 38.0
|
||||
margin_bottom = 10.0
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "map"
|
||||
uppercase = true
|
||||
|
||||
[node name="1" type="HBoxContainer" parent="Control/Open"]
|
||||
margin_left = 11.0
|
||||
margin_top = 30.0
|
||||
margin_right = 53.0
|
||||
margin_bottom = 42.0
|
||||
rect_min_size = Vector2( 0, 12 )
|
||||
size_flags_horizontal = 4
|
||||
custom_constants/separation = 2
|
||||
|
||||
[node name="Player" type="Control" parent="Control/Open/1"]
|
||||
margin_right = 8.0
|
||||
margin_bottom = 12.0
|
||||
rect_min_size = Vector2( 8, 12 )
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="Control/Open/1/Player"]
|
||||
material = SubResource( 15 )
|
||||
position = Vector2( 4, 2 )
|
||||
texture = ExtResource( 19 )
|
||||
hframes = 7
|
||||
region_rect = Rect2( 40, 0, 8, 24 )
|
||||
|
||||
[node name="Image" type="Control" parent="Control/Open/1"]
|
||||
visible = false
|
||||
margin_left = 10.0
|
||||
margin_right = 18.0
|
||||
margin_bottom = 12.0
|
||||
rect_min_size = Vector2( 8, 8 )
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="Control/Open/1/Image"]
|
||||
position = Vector2( 0, 2 )
|
||||
texture = ExtResource( 1 )
|
||||
centered = false
|
||||
hframes = 4
|
||||
frame = 2
|
||||
|
||||
[node name="Label" type="Label" parent="Control/Open/1"]
|
||||
margin_left = 10.0
|
||||
margin_top = 2.0
|
||||
margin_right = 42.0
|
||||
margin_bottom = 10.0
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "char"
|
||||
uppercase = true
|
||||
|
||||
[node name="2" type="HBoxContainer" parent="Control/Open"]
|
||||
margin_left = 7.0
|
||||
margin_top = 47.0
|
||||
margin_right = 57.0
|
||||
margin_bottom = 59.0
|
||||
rect_min_size = Vector2( 0, 12 )
|
||||
size_flags_horizontal = 4
|
||||
custom_constants/separation = 2
|
||||
|
||||
[node name="Image" type="Control" parent="Control/Open/2"]
|
||||
margin_right = 8.0
|
||||
margin_bottom = 12.0
|
||||
rect_min_size = Vector2( 8, 8 )
|
||||
|
||||
[node name="Sprite" type="Sprite" parent="Control/Open/2/Image"]
|
||||
position = Vector2( 0, 2 )
|
||||
texture = ExtResource( 16 )
|
||||
centered = false
|
||||
hframes = 4
|
||||
vframes = 4
|
||||
frame = 13
|
||||
|
||||
[node name="Label" type="Label" parent="Control/Open/2"]
|
||||
margin_left = 10.0
|
||||
margin_top = 2.0
|
||||
margin_right = 50.0
|
||||
margin_bottom = 10.0
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "erase"
|
||||
uppercase = true
|
||||
|
||||
[node name="Erase" type="VBoxContainer" parent="Control"]
|
||||
margin_top = 32.0
|
||||
margin_right = 72.0
|
||||
margin_bottom = 104.0
|
||||
custom_constants/separation = 9
|
||||
alignment = 1
|
||||
|
||||
[node name="Label" type="Label" parent="Control/Erase"]
|
||||
margin_left = 12.0
|
||||
margin_top = 19.0
|
||||
margin_right = 60.0
|
||||
margin_bottom = 31.0
|
||||
rect_min_size = Vector2( 48, 12 )
|
||||
size_flags_horizontal = 4
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "erase?"
|
||||
align = 1
|
||||
valign = 1
|
||||
uppercase = true
|
||||
|
||||
[node name="No" type="Label" parent="Control/Erase"]
|
||||
margin_left = 27.0
|
||||
margin_top = 40.0
|
||||
margin_right = 45.0
|
||||
margin_bottom = 52.0
|
||||
rect_min_size = Vector2( 18, 12 )
|
||||
size_flags_horizontal = 4
|
||||
custom_fonts/font = SubResource( 3 )
|
||||
text = "no"
|
||||
align = 1
|
||||
valign = 1
|
||||
uppercase = true
|
||||
|
||||
[node name="Header" type="Label" parent="Control"]
|
||||
margin_top = 5.0
|
||||
margin_right = 228.0
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
extends Node2D
|
||||
|
||||
func _ready():
|
||||
pass
|
||||
|
||||
func _input(event):
|
||||
if Wipe.is_wipe: return
|
||||
|
||||
if event.is_action_pressed("action"):
|
||||
Shared.wipe_scene(Shared.main_menu_path)
|
||||
set_process_input(false)
|
||||
Audio.play("menu_back", 0.9, 1.1)
|
||||
|
|
|
|||
|
|
@ -1,20 +1,119 @@
|
|||
[gd_scene load_steps=12 format=2]
|
||||
[gd_scene load_steps=18 format=2]
|
||||
|
||||
[ext_resource path="res://media/font/m3x6.tres" type="DynamicFont" id=1]
|
||||
[ext_resource path="res://src/stage/DetailTileMap.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://src/stage/SolidTileMap.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://src/menu/credits.gd" type="Script" id=4]
|
||||
[ext_resource path="res://media/image/crate_tiles.png" type="Texture" id=5]
|
||||
[ext_resource path="res://src/stage/GameCamera.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://src/actor/Exit.tscn" type="PackedScene" id=7]
|
||||
[ext_resource path="res://src/actor/Box.tscn" type="PackedScene" id=8]
|
||||
[ext_resource path="res://src/actor/Player.tscn" type="PackedScene" id=9]
|
||||
[ext_resource path="res://media/font/m6x11.ttf" type="DynamicFontData" id=10]
|
||||
[ext_resource path="res://media/image/HarmonyHoneyLogo.png" type="Texture" id=11]
|
||||
[ext_resource path="res://media/image/bricks.png" type="Texture" id=12]
|
||||
[ext_resource path="res://media/image/8pixel.png" type="Texture" id=13]
|
||||
[ext_resource path="res://media/image/solid_bricks.png" type="Texture" id=14]
|
||||
|
||||
[sub_resource type="DynamicFont" id=1]
|
||||
extra_spacing_bottom = -1
|
||||
font_data = ExtResource( 10 )
|
||||
|
||||
[sub_resource type="TileSet" id=2]
|
||||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 14 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.760784, 0.764706, 0.780392, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
0/autotile/tile_size = Vector2( 8, 8 )
|
||||
0/autotile/spacing = 0
|
||||
0/autotile/occluder_map = [ ]
|
||||
0/autotile/navpoly_map = [ ]
|
||||
0/autotile/priority_map = [ ]
|
||||
0/autotile/z_index_map = [ ]
|
||||
0/occluder_offset = Vector2( 0, 0 )
|
||||
0/navigation_offset = Vector2( 0, 0 )
|
||||
0/shape_offset = Vector2( 0, 0 )
|
||||
0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
0/shape_one_way = false
|
||||
0/shape_one_way_margin = 0.0
|
||||
0/shapes = [ ]
|
||||
0/z_index = 0
|
||||
1/name = "8pixel.png 1"
|
||||
1/texture = ExtResource( 13 )
|
||||
1/tex_offset = Vector2( 0, 0 )
|
||||
1/modulate = Color( 1, 0, 1, 0.33 )
|
||||
1/region = Rect2( 0, 0, 8, 8 )
|
||||
1/tile_mode = 0
|
||||
1/occluder_offset = Vector2( 0, 0 )
|
||||
1/navigation_offset = Vector2( 0, 0 )
|
||||
1/shape_offset = Vector2( 0, 0 )
|
||||
1/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
1/shape_one_way = false
|
||||
1/shape_one_way_margin = 0.0
|
||||
1/shapes = [ ]
|
||||
1/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=3]
|
||||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 12 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.372549, 0.341176, 0.309804, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
4/autotile/tile_size = Vector2( 8, 8 )
|
||||
4/autotile/spacing = 0
|
||||
4/autotile/occluder_map = [ ]
|
||||
4/autotile/navpoly_map = [ ]
|
||||
4/autotile/priority_map = [ ]
|
||||
4/autotile/z_index_map = [ ]
|
||||
4/occluder_offset = Vector2( 0, 0 )
|
||||
4/navigation_offset = Vector2( 0, 0 )
|
||||
4/shape_offset = Vector2( 0, 0 )
|
||||
4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
4/shape_one_way = false
|
||||
4/shape_one_way_margin = 0.0
|
||||
4/shapes = [ ]
|
||||
4/z_index = 0
|
||||
5/name = "crate_tiles.png 5"
|
||||
5/texture = ExtResource( 5 )
|
||||
5/tex_offset = Vector2( 0, 0 )
|
||||
5/modulate = Color( 0, 0.529412, 0.317647, 1 )
|
||||
5/region = Rect2( 0, 16, 24, 8 )
|
||||
5/tile_mode = 2
|
||||
5/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
5/autotile/tile_size = Vector2( 8, 8 )
|
||||
5/autotile/spacing = 0
|
||||
5/autotile/occluder_map = [ ]
|
||||
5/autotile/navpoly_map = [ ]
|
||||
5/autotile/priority_map = [ ]
|
||||
5/autotile/z_index_map = [ ]
|
||||
5/occluder_offset = Vector2( 0, 0 )
|
||||
5/navigation_offset = Vector2( 0, 0 )
|
||||
5/shape_offset = Vector2( 0, 0 )
|
||||
5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
5/shape_one_way = false
|
||||
5/shape_one_way_margin = 0.0
|
||||
5/shapes = [ ]
|
||||
5/z_index = 0
|
||||
6/name = "crate_tiles.png 6"
|
||||
6/texture = ExtResource( 5 )
|
||||
6/tex_offset = Vector2( 0, 0 )
|
||||
6/modulate = Color( 0.670588, 0.321569, 0.211765, 1 )
|
||||
6/region = Rect2( 0, 24, 8, 8 )
|
||||
6/tile_mode = 0
|
||||
6/occluder_offset = Vector2( 0, 0 )
|
||||
6/navigation_offset = Vector2( 0, 0 )
|
||||
6/shape_offset = Vector2( 0, 0 )
|
||||
6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
6/shape_one_way = false
|
||||
6/shape_one_way_margin = 0.0
|
||||
6/shapes = [ ]
|
||||
6/z_index = 0
|
||||
|
||||
[node name="Credits" type="Node2D"]
|
||||
script = ExtResource( 4 )
|
||||
|
||||
|
|
@ -60,11 +159,13 @@ valign = 1
|
|||
[node name="Stage" type="Node2D" parent="."]
|
||||
|
||||
[node name="SolidTileMap" parent="Stage" instance=ExtResource( 3 )]
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -65531, 0, 1, 5, 536870912, 0, 65541, 0, 1, 131077, 0, 0, 196613, 0, 1, 262149, 536870912, 0, 327685, 0, 0, 393221, 0, 1, 524287, 0, 1, 458752, 0, 0, 458753, 0, 1, 458754, 536870912, 0, 458755, 0, 1, 458756, 0, 1, 458757, 0, 0, 458758, 0, 1, 458759, 536870912, 0, 589845, 536870912, 0, 589846, 0, 1, 589847, 0, 0, 589848, 0, 1, 589849, 0, 1, 589850, 536870912, 0, 589851, 0, 1, 589852, 0, 1, 655381, 0, 1, 720917, 536870912, 0, 786453, 0, 0, 786454, 0, 1, 786455, 536870912, 0, 851991, 0, 1, 917527, 0, 0, 983063, 536870912, 0, 1048599, 0, 1 )
|
||||
|
||||
[node name="DetailTileMap" parent="Stage" instance=ExtResource( 2 )]
|
||||
z_index = -11
|
||||
tile_data = PoolIntArray( -1, 4, 0, -65536, 536870916, 1, -65535, 4, 0, -65532, 5, 0, -65529, 536870916, 3, -65528, 536870916, 1, -65527, 536870916, 0, -65526, 4, 3, -65510, 536870916, 0, -65509, 4, 1, -65508, 4, 1, 65535, 536870916, 1, 0, 536870916, 0, 1, 536870916, 2, 4, -1073741819, 0, 7, 4, 2, 8, 4, 0, 9, 536870916, 1, 10, 536870916, 2, 17, 4, 2, 18, 536870916, 0, 19, 4, 1, 20, 4, 1, 21, 4, 0, 22, 536870916, 2, 26, 4, 2, 27, 4, 0, 28, 4, 1, 131071, 4, 0, 65536, 536870916, 2, 65540, -1073741819, 0, 65543, 536870916, 3, 65544, 536870916, 2, 65555, 4, 2, 65556, 4, 1, 65557, 536870916, 2, 65563, 4, 2, 65564, 536870916, 0, 131076, -1073741819, 0, 131095, 5, 2, 131096, 5, 0, 131097, -1610612731, 2, 196612, -1073741819, 2, 196614, 536870917, 2, 196631, 5, 0, 196632, 5, 0, 196633, 5, 0, 196634, -1610612731, 2, 262150, -1610612731, 0, 262166, -1610612731, 0, 262167, 5, 0, 262168, 5, 0, 262169, 5, 0, 262170, -1073741819, 0, 327686, -1610612731, 0, 327702, -1073741819, 2, 327703, 5, 0, 327704, 5, 0, 327705, 5, 0, 458751, 5, 0, 393216, 5, 0, 393217, 536870917, 2, 393220, 5, 2, 393222, -536870907, 2, 393239, -1073741819, 2, 393240, 5, 0, 393241, 1610612741, 2, 393242, 536870916, 3, 393243, 536870916, 1, 393244, 536870916, 1, 458776, 5, 1, 458778, 4, 2, 458779, 536870916, 0, 458780, 536870916, 1, 524289, 1073741829, 2, 524290, 5, 0, 524291, 5, 1, 524292, 1610612741, 2, 524312, 5, 1, 524313, 536870917, 2, 655359, 536870916, 1, 589824, 4, 3, 589827, 5, 1, 720895, 536870916, 1, 655360, 536870916, 2, 655362, 5, 2, 655363, 5, 1, 655364, 5, 0, 655365, -1610612731, 2, 655380, 5, 2, 655382, 5, 0, 655383, 5, 0, 655384, 5, 0, 655385, 1610612741, 2, 720897, 5, 2, 720898, 5, 0, 720899, 5, 0, 720900, -1610612731, 1, 720901, -1610612731, 1, 720902, -1610612731, 1, 720903, -1610612731, 2, 720916, -1073741819, 0, 720922, 4, 2, 720923, 4, 0, 720924, 4, 1, 786433, 5, 0, 786434, 1073741829, 1, 786435, 5, 0, 786436, 5, 0, 786452, -1073741819, 2, 786456, -1610612731, 2, 786459, 4, 2, 786460, 536870916, 1, 851969, -1073741819, 2, 851970, 5, 0, 851971, -2147483643, 1, 851972, -536870907, 1, 851973, -536870907, 2, 851992, 5, 0, 983039, 536870916, 0, 917504, 4, 3, 917506, -1073741819, 2, 917507, 5, 0, 917508, 1610612741, 2, 917528, 5, 0, 917531, 536870916, 3, 917532, 4, 0, 1048575, 4, 1, 983040, 4, 0, 983041, 4, 3, 983052, 536870916, 3, 983053, 4, 1, 983054, 4, 0, 983055, 4, 3, 983062, -2147483643, 2, 983064, 1610612741, 2, 983066, 536870916, 3, 983067, 536870916, 0, 983068, 536870916, 1, 1114111, 4, 1, 1048576, 4, 1, 1048577, 536870916, 0, 1048588, 4, 2, 1048589, 536870916, 1, 1048590, 536870916, 1, 1048591, 536870916, 2, 1048598, -2147483643, 0, 1048602, 4, 0, 1048603, 536870916, 1, 1048604, 4, 0 )
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -1, 4, 0, -65536, 536870916, 1, -65535, 4, 0, -65532, 5, 0, -65529, 536870916, 3, -65528, 536870916, 1, -65527, 536870916, 0, -65526, 4, 3, -65510, 536870916, 0, -65509, 4, 1, -65508, 4, 1, 65535, 536870916, 1, 0, 536870916, 0, 1, 536870916, 2, 4, -1073741819, 0, 7, 4, 2, 8, 4, 0, 9, 536870916, 1, 10, 536870916, 2, 17, 4, 2, 18, 536870916, 0, 19, 4, 1, 20, 4, 1, 21, 4, 0, 22, 536870916, 2, 26, 4, 2, 27, 4, 0, 28, 4, 1, 131071, 4, 0, 65536, 536870916, 2, 65540, -1073741819, 0, 65543, 536870916, 3, 65544, 536870916, 2, 65555, 4, 2, 65556, 4, 1, 65557, 536870916, 2, 65563, 4, 2, 65564, 536870916, 0, 131076, -1073741819, 0, 131095, 5, 2, 131096, 5, 0, 131097, -1610612731, 2, 196612, -1073741819, 2, 196614, 536870917, 2, 196631, 5, 0, 196632, 5, 0, 196633, 5, 0, 196634, -1610612731, 2, 262150, -1610612731, 0, 262166, -1610612731, 0, 262167, 5, 0, 262168, 5, 0, 262169, 5, 0, 262170, -1073741819, 0, 327686, -1610612731, 0, 327702, -1073741819, 2, 327703, 5, 0, 327704, 5, 0, 327705, 5, 0, 458751, 5, 0, 393216, 5, 0, 393217, 536870917, 2, 393220, 5, 2, 393222, -536870907, 2, 393239, -1073741819, 2, 393240, 5, 0, 393241, 1610612741, 2, 393242, 536870916, 3, 393243, 536870916, 1, 393244, 536870916, 1, 458776, 6, 0, 458778, 4, 2, 458779, 536870916, 0, 458780, 536870916, 1, 524289, 1073741829, 2, 524290, 5, 0, 524291, 6, 0, 524292, 1610612741, 2, 524312, 6, 0, 524313, 536870917, 2, 655359, 536870916, 1, 589824, 4, 3, 589827, 6, 0, 720895, 536870916, 1, 655360, 536870916, 2, 655362, 5, 2, 655363, 6, 0, 655364, 5, 0, 655365, -1610612731, 2, 655380, 5, 2, 655382, 5, 0, 655383, 5, 0, 655384, 5, 0, 655385, 1610612741, 2, 720897, 5, 2, 720898, 5, 0, 720899, 5, 0, 720900, -1610612730, 0, 720901, -1610612730, 0, 720902, -1610612730, 0, 720903, -1610612731, 2, 720916, -1073741819, 0, 720922, 4, 2, 720923, 4, 0, 720924, 4, 1, 786433, 5, 0, 786434, 1610612742, 0, 786435, 5, 0, 786436, 5, 0, 786452, -1073741819, 2, 786456, -1610612731, 2, 786459, 4, 2, 786460, 536870916, 1, 851969, -1073741819, 2, 851970, 5, 0, 851971, -1073741818, 0, 851972, -1073741818, 0, 851973, -536870907, 2, 851992, 5, 0, 983039, 536870916, 0, 917504, 4, 3, 917506, -1073741819, 2, 917507, 5, 0, 917508, 1610612741, 2, 917528, 5, 0, 917531, 536870916, 3, 917532, 4, 0, 1048575, 4, 1, 983040, 4, 0, 983041, 4, 3, 983052, 536870916, 3, 983053, 4, 1, 983054, 4, 0, 983055, 4, 3, 983062, -2147483643, 2, 983064, 1610612741, 2, 983066, 536870916, 3, 983067, 536870916, 0, 983068, 536870916, 1, 1114111, 4, 1, 1048576, 4, 1, 1048577, 536870916, 0, 1048588, 4, 2, 1048589, 536870916, 1, 1048590, 536870916, 1, 1048591, 536870916, 2, 1048598, -2147483643, 0, 1048602, 4, 0, 1048603, 536870916, 1, 1048604, 4, 0 )
|
||||
|
||||
[node name="GameCamera" parent="Stage" instance=ExtResource( 6 )]
|
||||
position = Vector2( 112, 64 )
|
||||
|
|
|
|||
|
|
@ -2,5 +2,4 @@ extends Node2D
|
|||
|
||||
func act():
|
||||
Shared.wipe_scene(Shared.main_menu_path)
|
||||
owner.set_process_input(false)
|
||||
Audio.play("menu_back", 0.9, 1.1)
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@ func _ready():
|
|||
select_item(0)
|
||||
|
||||
func _input(event):
|
||||
if Wipe.is_wipe: return
|
||||
|
||||
var up = event.is_action_pressed("up")
|
||||
var down = event.is_action_pressed("down")
|
||||
var left = event.is_action_pressed("left")
|
||||
|
|
|
|||
|
|
@ -1,10 +1,15 @@
|
|||
[gd_scene load_steps=19 format=2]
|
||||
[gd_scene load_steps=26 format=2]
|
||||
|
||||
[ext_resource path="res://src/menu/options/OptionsMenu.gd" type="Script" id=1]
|
||||
[ext_resource path="res://src/menu/options/Volume.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://media/image/crate_tiles.png" type="Texture" id=3]
|
||||
[ext_resource path="res://src/menu/Blink.gd" type="Script" id=4]
|
||||
[ext_resource path="res://media/audio/sfx/btn0.wav" type="AudioStream" id=5]
|
||||
[ext_resource path="res://media/image/bricks.png" type="Texture" id=6]
|
||||
[ext_resource path="res://media/image/8pixel.png" type="Texture" id=7]
|
||||
[ext_resource path="res://media/font/m6x11.ttf" type="DynamicFontData" id=8]
|
||||
[ext_resource path="res://media/font/m3x6.tres" type="DynamicFont" id=9]
|
||||
[ext_resource path="res://media/image/solid_bricks.png" type="Texture" id=10]
|
||||
[ext_resource path="res://media/image/9slice.png" type="Texture" id=13]
|
||||
[ext_resource path="res://src/stage/DetailTileMap.tscn" type="PackedScene" id=14]
|
||||
[ext_resource path="res://src/actor/Exit.tscn" type="PackedScene" id=15]
|
||||
|
|
@ -22,16 +27,113 @@
|
|||
extra_spacing_bottom = -1
|
||||
font_data = ExtResource( 8 )
|
||||
|
||||
[sub_resource type="TileSet" id=2]
|
||||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 10 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.760784, 0.764706, 0.780392, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
0/autotile/tile_size = Vector2( 8, 8 )
|
||||
0/autotile/spacing = 0
|
||||
0/autotile/occluder_map = [ ]
|
||||
0/autotile/navpoly_map = [ ]
|
||||
0/autotile/priority_map = [ ]
|
||||
0/autotile/z_index_map = [ ]
|
||||
0/occluder_offset = Vector2( 0, 0 )
|
||||
0/navigation_offset = Vector2( 0, 0 )
|
||||
0/shape_offset = Vector2( 0, 0 )
|
||||
0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
0/shape_one_way = false
|
||||
0/shape_one_way_margin = 0.0
|
||||
0/shapes = [ ]
|
||||
0/z_index = 0
|
||||
1/name = "8pixel.png 1"
|
||||
1/texture = ExtResource( 7 )
|
||||
1/tex_offset = Vector2( 0, 0 )
|
||||
1/modulate = Color( 1, 0, 1, 0.33 )
|
||||
1/region = Rect2( 0, 0, 8, 8 )
|
||||
1/tile_mode = 0
|
||||
1/occluder_offset = Vector2( 0, 0 )
|
||||
1/navigation_offset = Vector2( 0, 0 )
|
||||
1/shape_offset = Vector2( 0, 0 )
|
||||
1/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
1/shape_one_way = false
|
||||
1/shape_one_way_margin = 0.0
|
||||
1/shapes = [ ]
|
||||
1/z_index = 0
|
||||
|
||||
[sub_resource type="TileSet" id=3]
|
||||
4/name = "bricks.png 4"
|
||||
4/texture = ExtResource( 6 )
|
||||
4/tex_offset = Vector2( 0, 0 )
|
||||
4/modulate = Color( 0.372549, 0.341176, 0.309804, 1 )
|
||||
4/region = Rect2( 0, 0, 40, 8 )
|
||||
4/tile_mode = 2
|
||||
4/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
4/autotile/tile_size = Vector2( 8, 8 )
|
||||
4/autotile/spacing = 0
|
||||
4/autotile/occluder_map = [ ]
|
||||
4/autotile/navpoly_map = [ ]
|
||||
4/autotile/priority_map = [ ]
|
||||
4/autotile/z_index_map = [ ]
|
||||
4/occluder_offset = Vector2( 0, 0 )
|
||||
4/navigation_offset = Vector2( 0, 0 )
|
||||
4/shape_offset = Vector2( 0, 0 )
|
||||
4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
4/shape_one_way = false
|
||||
4/shape_one_way_margin = 0.0
|
||||
4/shapes = [ ]
|
||||
4/z_index = 0
|
||||
5/name = "crate_tiles.png 5"
|
||||
5/texture = ExtResource( 3 )
|
||||
5/tex_offset = Vector2( 0, 0 )
|
||||
5/modulate = Color( 0, 0.529412, 0.317647, 1 )
|
||||
5/region = Rect2( 0, 16, 24, 8 )
|
||||
5/tile_mode = 2
|
||||
5/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
5/autotile/tile_size = Vector2( 8, 8 )
|
||||
5/autotile/spacing = 0
|
||||
5/autotile/occluder_map = [ ]
|
||||
5/autotile/navpoly_map = [ ]
|
||||
5/autotile/priority_map = [ ]
|
||||
5/autotile/z_index_map = [ ]
|
||||
5/occluder_offset = Vector2( 0, 0 )
|
||||
5/navigation_offset = Vector2( 0, 0 )
|
||||
5/shape_offset = Vector2( 0, 0 )
|
||||
5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
5/shape_one_way = false
|
||||
5/shape_one_way_margin = 0.0
|
||||
5/shapes = [ ]
|
||||
5/z_index = 0
|
||||
6/name = "crate_tiles.png 6"
|
||||
6/texture = ExtResource( 3 )
|
||||
6/tex_offset = Vector2( 0, 0 )
|
||||
6/modulate = Color( 0.670588, 0.321569, 0.211765, 1 )
|
||||
6/region = Rect2( 0, 24, 8, 8 )
|
||||
6/tile_mode = 0
|
||||
6/occluder_offset = Vector2( 0, 0 )
|
||||
6/navigation_offset = Vector2( 0, 0 )
|
||||
6/shape_offset = Vector2( 0, 0 )
|
||||
6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
|
||||
6/shape_one_way = false
|
||||
6/shape_one_way_margin = 0.0
|
||||
6/shapes = [ ]
|
||||
6/z_index = 0
|
||||
|
||||
[node name="OptionsMenu" type="Node2D"]
|
||||
pause_mode = 2
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Cursor" type="ColorRect" parent="."]
|
||||
modulate = Color( 1, 0, 0.301961, 1 )
|
||||
margin_left = 56.0
|
||||
margin_top = 23.0
|
||||
margin_right = 200.0
|
||||
margin_bottom = 35.0
|
||||
color = Color( 0.113725, 0.168627, 0.32549, 1 )
|
||||
script = ExtResource( 4 )
|
||||
color_blink = PoolColorArray( 0, 0, 1, 1, 0, 0.482353, 1, 1 )
|
||||
|
||||
[node name="Header" type="Label" parent="."]
|
||||
margin_left = 14.0
|
||||
|
|
@ -82,9 +184,6 @@ margin_bottom = 9.0
|
|||
custom_fonts/font = ExtResource( 9 )
|
||||
text = "Back to Menu"
|
||||
align = 1
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="Sounds" parent="MenuItems" instance=ExtResource( 2 )]
|
||||
|
||||
|
|
@ -242,11 +341,13 @@ align = 1
|
|||
[node name="Stage" type="Node2D" parent="."]
|
||||
|
||||
[node name="SolidTileMap" parent="Stage" instance=ExtResource( 17 )]
|
||||
tile_set = SubResource( 2 )
|
||||
tile_data = PoolIntArray( -131061, 0, 1, -131052, 0, 0, -65525, 0, 0, -65516, 0, 1, 11, 0, 1, 20, 0, 0, 65542, 0, 0, 65543, 0, 1, 65544, 0, 1, 65545, 0, 0, 65546, 0, 1, 65547, 536870912, 0, 65556, 0, 0, 65557, 0, 1, 65558, 536870912, 1, 65559, 536870912, 0, 65560, 0, 1, 65561, 536870912, 0, 131078, 0, 1, 131097, 0, 1, 196610, 0, 0, 196611, 0, 1, 196612, 0, 0, 196613, 0, 1, 196614, 536870912, 0, 196633, 536870912, 0, 262146, 0, 1, 262169, 0, 0, 327682, 536870912, 0, 327705, 0, 1, 393218, 536870912, 0, 393241, 0, 0, 393242, 0, 1, 393243, 536870912, 0, 393244, 0, 1, 393245, 536870912, 0, 458754, 0, 1, 458781, 0, 1, 524290, 0, 0, 524317, 0, 0, 589826, 0, 1, 589853, 0, 1, 655362, 0, 0, 655363, 0, 1, 655364, 536870912, 0, 655365, 0, 1, 655366, 536870912, 0, 655389, 0, 0, 720902, 0, 0, 720925, 536870912, 0, 786438, 0, 1, 786461, 0, 1, 851974, 0, 0, 851993, 0, 0, 851994, 0, 1, 851995, 0, 0, 851996, 0, 1, 851997, 536870912, 0, 917510, 0, 0, 917529, 0, 1, 983046, 0, 1, 983065, 536870912, 0, 1048582, 0, 1, 1048601, 0, 0 )
|
||||
|
||||
[node name="DetailTileMap" parent="Stage" instance=ExtResource( 14 )]
|
||||
z_index = -11
|
||||
tile_data = PoolIntArray( -131062, 5, 0, -131051, 5, 0, -65526, 5, 0, -65515, 5, 0, -65508, 536870916, 0, -65507, 4, 1, -65506, 536870916, 0, 8, 5, 2, 9, 5, 0, 10, -1073741819, 0, 21, -1610612731, 0, 22, 5, 0, 23, 536870917, 2, 28, 4, 2, 29, 4, 0, 30, 4, 1, 65565, 4, 2, 65566, 536870916, 0, 131075, 5, 2, 131076, 5, 0, 131077, 5, 0, 131079, 5, 0, 131080, 1610612741, 2, 131095, 1073741829, 2, 131096, 5, 0, 131098, -1610612731, 2, 196615, 1610612741, 2, 196632, 1073741829, 2, 196634, 1610612741, 0, 262147, 1610612741, 2, 262170, -1610612731, 0, 327684, 5, 2, 327685, 5, 0, 327686, -1610612731, 2, 327706, 5, 0, 327707, 536870917, 2, 393220, 5, 0, 393221, 5, 0, 393222, 5, 0, 458756, -1073741819, 2, 458757, 5, 0, 458758, 1610612741, 2, 458778, 5, 1, 458779, 1610612741, 2, 524293, 1610612741, 1, 524314, 5, 1, 589828, 5, 2, 589829, 1610612741, 1, 589849, 5, 2, 589850, 5, 0, 589851, -1610612731, 2, 655385, 5, 0, 655386, 5, 0, 655387, 5, 0, 720900, 1073741829, 2, 720901, 5, 0, 720903, -1610612731, 2, 720921, -1073741819, 2, 720922, 5, 0, 720923, 1610612741, 2, 786439, 1610612741, 0, 786460, 5, 2, 851975, 1610612741, 0, 917505, 536870916, 0, 917506, 4, 3, 917511, 1610612741, 0, 917528, -2147483643, 2, 917530, 5, 0, 917531, 5, 0, 917532, 1610612741, 2, 983041, 4, 1, 983042, 4, 0, 983043, 4, 3, 983047, 1610612741, 0, 983064, -2147483643, 0, 1048577, 536870916, 0, 1048578, 4, 1, 1048579, 536870916, 0, 1048583, 1610612741, 0, 1048600, -2147483643, 0 )
|
||||
tile_set = SubResource( 3 )
|
||||
tile_data = PoolIntArray( -131062, 5, 0, -131051, 5, 0, -65526, 5, 0, -65515, 5, 0, -65508, 536870916, 0, -65507, 4, 1, -65506, 536870916, 0, 8, 5, 2, 9, 5, 0, 10, -1073741819, 0, 21, -1610612731, 0, 22, 5, 0, 23, 536870917, 2, 28, 4, 2, 29, 4, 0, 30, 4, 1, 65565, 4, 2, 65566, 536870916, 0, 131075, 5, 2, 131076, 5, 0, 131077, 5, 0, 131079, 5, 0, 131080, 1610612741, 2, 131095, 1073741829, 2, 131096, 5, 0, 131098, -1610612731, 2, 196615, 1610612741, 2, 196632, 1073741829, 2, 196634, 1610612741, 0, 262147, 1610612741, 2, 262170, -1610612731, 0, 327684, 5, 2, 327685, 5, 0, 327686, -1610612731, 2, 327706, 5, 0, 327707, 536870917, 2, 393220, 5, 0, 393221, 5, 0, 393222, 5, 0, 458756, -1073741819, 2, 458757, 5, 0, 458758, 1610612741, 2, 458778, 6, 0, 458779, 1610612741, 2, 524293, 6, 0, 524314, 6, 0, 589828, 5, 2, 589829, 6, 0, 589849, 5, 2, 589850, 5, 0, 589851, -1610612731, 2, 655385, 5, 0, 655386, 5, 0, 655387, 5, 0, 720900, 1073741829, 2, 720901, 5, 0, 720903, -1610612731, 2, 720921, -1073741819, 2, 720922, 5, 0, 720923, 1610612741, 2, 786439, 1610612741, 0, 786460, 5, 2, 851975, 1610612741, 0, 917505, 536870916, 0, 917506, 4, 3, 917511, 1610612741, 0, 917528, -2147483643, 2, 917530, 5, 0, 917531, 5, 0, 917532, 1610612741, 2, 983041, 4, 1, 983042, 4, 0, 983043, 4, 3, 983047, 1610612741, 0, 983064, -2147483643, 0, 1048577, 536870916, 0, 1048578, 4, 1, 1048579, 536870916, 0, 1048583, 1610612741, 0, 1048600, -2147483643, 0 )
|
||||
|
||||
[node name="GameCamera" parent="Stage" instance=ExtResource( 18 )]
|
||||
position = Vector2( 128, 64 )
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ extends TileMap
|
|||
export var tile_color := Color("c2c3c7") setget set_tile_color
|
||||
|
||||
func _ready():
|
||||
tile_set = tile_set.duplicate()
|
||||
if Engine.is_editor_hint(): return
|
||||
tile_set = tile_set.duplicate()
|
||||
|
||||
Shared.node_map_solid = self
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
0/name = "solid_bricks.png 0"
|
||||
0/texture = ExtResource( 2 )
|
||||
0/tex_offset = Vector2( 0, 0 )
|
||||
0/modulate = Color( 0.745098, 0.0705882, 0.313726, 1 )
|
||||
0/modulate = Color( 0.760784, 0.764706, 0.780392, 1 )
|
||||
0/region = Rect2( 0, 0, 16, 8 )
|
||||
0/tile_mode = 2
|
||||
0/autotile/icon_coordinate = Vector2( 0, 0 )
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ extends Node2D
|
|||
|
||||
export var palette := -1 setget set_palette
|
||||
var palettes := [["c2c3c7", "5f574f", "008751", "ab5236"],
|
||||
["c486ac", "301f2a", "bd9400", "ab5236"],
|
||||
["c46874", "3d1c2f", "bd9400", "ab5236"],
|
||||
["b2b2db", "39394f", "838700", "ab378a"],
|
||||
["c2a782", "382e1f", "ab2c59", "4b6e2e"],
|
||||
["66bd6a", "153d17", "0a69f0", "a82d2d"],]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue