├── .gitignore ├── README.md ├── assets ├── Prefabs.meta ├── Prefabs │ ├── CoinJump.prefab │ ├── CoinJump.prefab.meta │ ├── MenuButton.prefab │ ├── MenuButton.prefab.meta │ ├── New Sprite(Splash).prefab │ ├── New Sprite(Splash).prefab.meta │ ├── Player.prefab │ ├── Player.prefab.meta │ ├── ReatartButton.prefab │ ├── ReatartButton.prefab.meta │ ├── ScoreBar.prefab │ ├── ScoreBar.prefab.meta │ ├── UpBlock.prefab │ ├── UpBlock.prefab.meta │ ├── beetle.prefab │ ├── beetle.prefab.meta │ ├── bonusBlock.prefab │ ├── bonusBlock.prefab.meta │ ├── bonusWall.prefab │ ├── bonusWall.prefab.meta │ ├── bonusblock6.prefab │ ├── bonusblock6.prefab.meta │ ├── breakableWall.prefab │ ├── breakableWall.prefab.meta │ ├── bster.prefab │ ├── bster.prefab.meta │ ├── castle_finish.prefab │ ├── castle_finish.prefab.meta │ ├── coin.prefab │ ├── coin.prefab.meta │ ├── collider.prefab │ ├── collider.prefab.meta │ ├── colliderPre.prefab │ ├── colliderPre.prefab.meta │ ├── level1.prefab │ ├── level1.prefab.meta │ ├── mushroom.prefab │ ├── mushroom.prefab.meta │ ├── over.prefab │ ├── over.prefab.meta │ ├── player_walk.prefab │ ├── player_walk.prefab.meta │ ├── snail.prefab │ ├── snail.prefab.meta │ ├── snailBlock.prefab │ └── snailBlock.prefab.meta ├── animation.meta ├── animation │ ├── beetle.anim │ ├── beetle.anim.meta │ ├── beetled.anim │ ├── beetled.anim.meta │ ├── bonusBlock.anim │ ├── bonusBlock.anim.meta │ ├── bonusBlocked.anim │ ├── bonusBlocked.anim.meta │ ├── bster.anim │ ├── bster.anim.meta │ ├── cactus.anim │ ├── cactus.anim.meta │ ├── coin.anim │ ├── coin.anim.meta │ ├── crab.anim │ ├── crab.anim.meta │ ├── crabDie.anim │ ├── crabDie.anim.meta │ ├── mushroom.anim │ ├── mushroom.anim.meta │ ├── player.anim │ ├── player.anim.meta │ ├── player_die.anim │ ├── player_die.anim.meta │ ├── player_hunker.anim │ ├── player_hunker.anim.meta │ ├── player_idle.anim │ ├── player_idle.anim.meta │ ├── player_jump.anim │ ├── player_jump.anim.meta │ ├── player_run.anim │ ├── player_run.anim.meta │ ├── player_walk.anim │ ├── player_walk.anim.meta │ ├── snail.anim │ ├── snail.anim.meta │ ├── snaild.anim │ └── snaild.anim.meta ├── gfx.meta ├── gfx │ ├── achievements_button.png │ ├── achievements_button.png.meta │ ├── button_cancel.png │ ├── button_cancel.png.meta │ ├── button_confirm.png │ ├── button_confirm.png.meta │ ├── buy_button.png │ ├── buy_button.png.meta │ ├── game.meta │ ├── game │ │ ├── Tileset_1.png │ │ ├── Tileset_1.png.meta │ │ ├── Tileset_2.png │ │ ├── Tileset_2.png.meta │ │ ├── Tileset_3.png │ │ ├── Tileset_3.png.meta │ │ ├── Tileset_4.png │ │ ├── Tileset_4.png.meta │ │ ├── Tileset_5.png │ │ ├── Tileset_5.png.meta │ │ ├── arrow_150.png │ │ ├── arrow_150.png.meta │ │ ├── background.png │ │ ├── background.png.meta │ │ ├── baloon.png │ │ ├── baloon.png.meta │ │ ├── bee.png │ │ ├── bee.png.meta │ │ ├── beetle.png │ │ ├── beetle.png.meta │ │ ├── bird.png │ │ ├── bird.png.meta │ │ ├── bonusWall.png │ │ ├── bonusWall.png.meta │ │ ├── bonusblock.png │ │ ├── bonusblock.png.meta │ │ ├── boss1.png │ │ ├── boss1.png.meta │ │ ├── boss2.png │ │ ├── boss2.png.meta │ │ ├── boss3.png │ │ ├── boss3.png.meta │ │ ├── boss4.png │ │ ├── boss4.png.meta │ │ ├── boss_bone.png │ │ ├── boss_bone.png.meta │ │ ├── breakableWall.png │ │ ├── breakableWall.png.meta │ │ ├── bstar.png │ │ ├── bstar.png.meta │ │ ├── cactus.png │ │ ├── cactus.png.meta │ │ ├── cannon.png │ │ ├── cannon.png.meta │ │ ├── castle_finish.png │ │ ├── castle_finish.png.meta │ │ ├── castle_fireball.png │ │ ├── castle_fireball.png.meta │ │ ├── chain.png │ │ ├── chain.png.meta │ │ ├── chain2.png │ │ ├── chain2.png.meta │ │ ├── clouds_bonus.png │ │ ├── clouds_bonus.png.meta │ │ ├── coin.png │ │ ├── coin.png.meta │ │ ├── crab.png │ │ ├── crab.png.meta │ │ ├── d_pad.png │ │ ├── d_pad.png.meta │ │ ├── destroyblock_new.png │ │ ├── destroyblock_new.png.meta │ │ ├── diamond.png │ │ ├── diamond.png.meta │ │ ├── down_button.png │ │ ├── down_button.png.meta │ │ ├── dpad_button.png │ │ ├── dpad_button.png.meta │ │ ├── egg.png │ │ ├── egg.png.meta │ │ ├── fall_block_enemy.png │ │ ├── fall_block_enemy.png.meta │ │ ├── flag_stand.png │ │ ├── flag_stand.png.meta │ │ ├── flag_waving2.png │ │ ├── flag_waving2.png.meta │ │ ├── flame_bullet.png │ │ ├── flame_bullet.png.meta │ │ ├── flower_shost.png │ │ ├── flower_shost.png.meta │ │ ├── flower_shot.png │ │ ├── flower_shot.png.meta │ │ ├── flying_fish.png │ │ ├── flying_fish.png.meta │ │ ├── frog.png │ │ ├── frog.png.meta │ │ ├── hedgehog.png │ │ ├── hedgehog.png.meta │ │ ├── jump_arrow.png │ │ ├── jump_arrow.png.meta │ │ ├── moving_platform.png │ │ ├── moving_platform.png.meta │ │ ├── mushroom.png │ │ ├── mushroom.png.meta │ │ ├── mushroom2.png │ │ ├── mushroom2.png.meta │ │ ├── mushroom22.png │ │ ├── mushroom22.png.meta │ │ ├── octopus.png │ │ ├── octopus.png.meta │ │ ├── pause_button.png │ │ ├── pause_button.png.meta │ │ ├── platform_circle.png │ │ ├── platform_circle.png.meta │ │ ├── platforms.png │ │ ├── platforms.png.meta │ │ ├── platforms_2.png │ │ ├── platforms_2.png.meta │ │ ├── player_max.png │ │ ├── player_max.png.meta │ │ ├── player_wu.png │ │ ├── player_wu.png.meta │ │ ├── plus_coins_button.png │ │ ├── plus_coins_button.png.meta │ │ ├── restart_button.png │ │ ├── restart_button.png.meta │ │ ├── resume_button.png │ │ ├── resume_button.png.meta │ │ ├── saw.png │ │ ├── saw.png.meta │ │ ├── sea_back.png │ │ ├── sea_back.png.meta │ │ ├── sea_bomb.png │ │ ├── sea_bomb.png.meta │ │ ├── sea_fish.png │ │ ├── sea_fish.png.meta │ │ ├── selectlevel_button.png │ │ ├── selectlevel_button.png.meta │ │ ├── shot_button.png │ │ ├── shot_button.png.meta │ │ ├── snail.png │ │ ├── snail.png.meta │ │ ├── snowball.png │ │ ├── snowball.png.meta │ │ ├── spider.png │ │ ├── spider.png.meta │ │ ├── stand_dest_block.png │ │ ├── stand_dest_block.png.meta │ │ ├── star.png │ │ ├── star.png.meta │ │ ├── swim_bubble.png │ │ ├── swim_bubble.png.meta │ │ ├── trampoline.png │ │ ├── trampoline.png.meta │ │ ├── turtle.png │ │ ├── turtle.png.meta │ │ ├── underground_bonus_back.png │ │ ├── underground_bonus_back.png.meta │ │ ├── vbird.png │ │ └── vbird.png.meta │ ├── leaderboards_button.png │ ├── leaderboards_button.png.meta │ ├── level_select.meta │ ├── level_select │ │ ├── blank_button.png │ │ ├── blank_button.png.meta │ │ ├── button_prev.png │ │ ├── button_prev.png.meta │ │ ├── castle.png │ │ ├── castle.png.meta │ │ ├── changearrow.png │ │ ├── changearrow.png.meta │ │ ├── reset_button.png │ │ ├── reset_button.png.meta │ │ ├── stars.png │ │ └── stars.png.meta │ ├── loading_background.png │ ├── loading_background.png.meta │ ├── menu.meta │ ├── menu │ │ ├── menu_effects.png │ │ ├── menu_effects.png.meta │ │ ├── menu_exit.png │ │ ├── menu_exit.png.meta │ │ ├── menu_share.png │ │ ├── menu_share.png.meta │ │ ├── menu_sound.png │ │ ├── menu_sound.png.meta │ │ ├── more_games.png │ │ ├── more_games.png.meta │ │ ├── play_big.png │ │ ├── play_big.png.meta │ │ ├── rate_menu.png │ │ ├── rate_menu.png.meta │ │ ├── slider_button.png │ │ ├── slider_button.png.meta │ │ ├── sound_adjust_screen.png │ │ └── sound_adjust_screen.png.meta │ ├── menu_exit.png │ ├── menu_exit.png.meta │ ├── splash.png │ ├── splash.png.meta │ ├── storeSmall_button.png │ ├── storeSmall_button.png.meta │ ├── store_button.png │ ├── store_button.png.meta │ ├── store_icons.png │ └── store_icons.png.meta ├── scence.meta ├── scence │ ├── LevelMenu.fire │ ├── LevelMenu.fire.meta │ ├── Main.fire │ ├── Main.fire.meta │ ├── Open.fire │ └── Open.fire.meta ├── scripts.meta ├── scripts │ ├── BackOpenScence.js │ ├── BackOpenScence.js.meta │ ├── Begin.js │ ├── Cameras.js │ ├── Cameras.js.meta │ ├── Coin.js │ ├── Coin.js.meta │ ├── CoinJump.js │ ├── CoinJump.js.meta │ ├── CreateCoin.js │ ├── CreateCoin.js.meta │ ├── Enemy.js │ ├── Enemy.js.meta │ ├── Follow.js │ ├── Follow.js.meta │ ├── GameBegin.js │ ├── GameBegin.js.meta │ ├── Globals.js │ ├── Globals.js.meta │ ├── PauseAndResume.js │ ├── PauseAndResume.js.meta │ ├── Player.js │ ├── Player.js.meta │ ├── PreBegin.js │ ├── PreBegin.js.meta │ ├── Score.js │ ├── Score.js.meta │ ├── Snail.js │ ├── Snail.js.meta │ ├── TiledMap01.js │ ├── TiledMap01.js.meta │ ├── begin.js.meta │ ├── cancel.js │ ├── cancel.js.meta │ ├── castle_finish.js │ ├── castle_finish.js.meta │ ├── floorMove.js │ ├── floorMove.js.meta │ ├── leve2.js │ ├── leve2.js.meta │ ├── level1.js │ ├── level1.js.meta │ ├── mushroom.js │ ├── mushroom.js.meta │ ├── storageManager.js │ ├── storageManager.js.meta │ ├── time.js │ ├── time.js.meta │ ├── touchButton.js │ ├── touchButton.js.meta │ ├── volume.js │ └── volume.js.meta ├── sound.meta ├── sound │ ├── click.mp3 │ ├── click.mp3.meta │ ├── coin.mp3 │ ├── coin.mp3.meta │ ├── enemy_killed.mp3 │ ├── enemy_killed.mp3.meta │ ├── gameover.mp3 │ ├── gameover.mp3.meta │ ├── high_score.mp3 │ ├── high_score.mp3.meta │ ├── hit_block.mp3 │ ├── hit_block.mp3.meta │ ├── jump.mp3 │ ├── jump.mp3.meta │ ├── jump_water.mp3 │ ├── jump_water.mp3.meta │ ├── levelclear.mp3 │ ├── levelclear.mp3.meta │ ├── menu_music.mp3 │ ├── menu_music.mp3.meta │ ├── mushroom_appear.mp3 │ ├── mushroom_appear.mp3.meta │ ├── mushroom_catch.mp3 │ ├── mushroom_catch.mp3.meta │ ├── player_decrease.mp3 │ ├── player_decrease.mp3.meta │ ├── running_time.mp3 │ ├── running_time.mp3.meta │ ├── underground_bonus.mp3 │ ├── underground_bonus.mp3.meta │ ├── world1_music.mp3 │ └── world1_music.mp3.meta ├── sprite.meta ├── sprite │ ├── BPreplay.ttf │ ├── BPreplay.ttf.meta │ ├── atlas.meta │ ├── atlas │ │ ├── TI.png │ │ ├── TI.png.meta │ │ ├── TIM.png │ │ ├── TIM.png.meta │ │ ├── TR.png │ │ ├── TR.png.meta │ │ ├── atlas.plist │ │ ├── atlas.plist.meta │ │ ├── atlas.png │ │ ├── atlas.png.meta │ │ ├── bee.plist │ │ ├── bee.plist.meta │ │ ├── bee.png │ │ ├── bee.png.meta │ │ ├── beetle.plist │ │ ├── beetle.plist.meta │ │ ├── beetle.png │ │ ├── beetle.png.meta │ │ ├── bonusBlock.plist │ │ ├── bonusBlock.png │ │ ├── bonusblock.plist.meta │ │ ├── bonusblock.png.meta │ │ ├── boss2.plist │ │ ├── boss2.plist.meta │ │ ├── boss2.png │ │ ├── boss2.png.meta │ │ ├── bstar.plist │ │ ├── bstar.plist.meta │ │ ├── bstar.png │ │ ├── bstar.png.meta │ │ ├── button_cancel_01.png │ │ ├── button_cancel_01.png.meta │ │ ├── button_cancel_02.png │ │ ├── button_cancel_02.png.meta │ │ ├── button_confirm_01.png │ │ ├── button_confirm_01.png.meta │ │ ├── button_confirm_02.png │ │ ├── button_confirm_02.png.meta │ │ ├── cactus.plist │ │ ├── cactus.plist.meta │ │ ├── cactus.png │ │ ├── cactus.png.meta │ │ ├── coin.plist │ │ ├── coin.plist.meta │ │ ├── coin.png │ │ ├── coin.png.meta │ │ ├── crab.plist │ │ ├── crab.plist.meta │ │ ├── crab.png │ │ ├── crab.png.meta │ │ ├── d_pad_0.png │ │ ├── d_pad_0.png.meta │ │ ├── d_pad_01.png │ │ ├── d_pad_01.png.meta │ │ ├── d_pad_02.png │ │ ├── d_pad_02.png.meta │ │ ├── d_pad_03.png │ │ ├── d_pad_03.png.meta │ │ ├── d_pad_1.png │ │ ├── d_pad_1.png.meta │ │ ├── d_pad_2.png │ │ ├── d_pad_2.png.meta │ │ ├── flower.plist │ │ ├── flower.plist.meta │ │ ├── flower.png │ │ ├── flower.png.meta │ │ ├── font.ttf │ │ ├── font.ttf.meta │ │ ├── font111.ttf │ │ ├── font111.ttf.meta │ │ ├── gold-bar.png │ │ ├── gold-bar.png.meta │ │ ├── gold-bar.psd │ │ ├── gold-bar.psd.meta │ │ ├── ground.plist │ │ ├── ground.plist.meta │ │ ├── ground.png │ │ ├── ground.png.meta │ │ ├── mushroom.plist │ │ ├── mushroom.plist.meta │ │ ├── mushroom.png │ │ ├── mushroom.png.meta │ │ ├── player.plist │ │ ├── player.plist.meta │ │ ├── player.png │ │ ├── player.png.meta │ │ ├── pre_button.plist │ │ ├── pre_button.plist.meta │ │ ├── pre_button.png │ │ ├── pre_button.png.meta │ │ ├── slider_button1.png │ │ ├── slider_button1.png.meta │ │ ├── slider_button2.png │ │ ├── slider_button2.png.meta │ │ ├── snail.plist │ │ ├── snail.plist.meta │ │ ├── snail.png │ │ ├── snail.png.meta │ │ ├── sound_adjust_screen.png │ │ ├── sound_adjust_screen.png.meta │ │ ├── time-bar.png │ │ ├── time-bar.png.meta │ │ ├── time.png │ │ └── time.png.meta │ ├── background.meta │ ├── background │ │ ├── background.png │ │ ├── background.png.meta │ │ ├── background_desert1.png │ │ ├── background_desert1.png.meta │ │ ├── background_desert2.png │ │ ├── background_desert2.png.meta │ │ ├── loading_background.png │ │ └── loading_background.png.meta │ ├── level_select.meta │ ├── level_select │ │ ├── blank_button.plist │ │ ├── blank_button.plist.meta │ │ ├── blank_button.png │ │ ├── blank_button.png.meta │ │ ├── castle.png │ │ ├── castle.png.meta │ │ ├── changearrow.png │ │ ├── changearrow.png.meta │ │ ├── stars.png │ │ └── stars.png.meta │ ├── menu.meta │ └── menu │ │ ├── menu_effects.png │ │ ├── menu_effects.png.meta │ │ ├── menu_exit.png │ │ ├── menu_exit.png.meta │ │ ├── menu_sound.png │ │ ├── menu_sound.png.meta │ │ ├── play_big.png │ │ └── play_big.png.meta ├── tmx.meta └── tmx │ ├── level01.tmx │ ├── level01.tmx.meta │ ├── level02.tmx │ ├── level02.tmx.meta │ ├── level03.tmx │ ├── level03.tmx.meta │ ├── level04.tmx │ ├── level04.tmx.meta │ ├── level05.tmx │ ├── level05.tmx.meta │ ├── level06.tmx │ ├── level06.tmx.meta │ ├── level07.tmx │ ├── level07.tmx.meta │ ├── level08.tmx │ ├── level08.tmx.meta │ ├── level09.tmx │ ├── level09.tmx.meta │ ├── level10.tmx │ ├── level10.tmx.meta │ ├── level11.tmx │ ├── level11.tmx.meta │ ├── level12.tmx │ ├── level12.tmx.meta │ ├── level13.tmx │ ├── level13.tmx.meta │ ├── level14.tmx │ ├── level14.tmx.meta │ ├── level15.tmx │ ├── level15.tmx.meta │ ├── level16.tmx │ ├── level16.tmx.meta │ ├── level17.tmx │ ├── level17.tmx.meta │ ├── level18.tmx │ ├── level18.tmx.meta │ ├── level19.tmx │ ├── level19.tmx.meta │ ├── level20.tmx │ ├── level20.tmx.meta │ ├── level21.tmx │ ├── level21.tmx.meta │ ├── level22.tmx │ ├── level22.tmx.meta │ ├── level23.tmx │ ├── level23.tmx.meta │ ├── level24.tmx │ ├── level24.tmx.meta │ ├── level25.tmx │ ├── level25.tmx.meta │ ├── level26.tmx │ ├── level26.tmx.meta │ ├── level27.tmx │ ├── level27.tmx.meta │ ├── level28.tmx │ ├── level28.tmx.meta │ ├── level29.tmx │ ├── level29.tmx.meta │ ├── level30.tmx │ ├── level30.tmx.meta │ ├── level31.tmx │ ├── level31.tmx.meta │ ├── level32.tmx │ ├── level32.tmx.meta │ ├── level33.tmx │ ├── level33.tmx.meta │ ├── level34.tmx │ ├── level34.tmx.meta │ ├── level35.tmx │ ├── level35.tmx.meta │ ├── level36.tmx │ ├── level36.tmx.meta │ ├── level37.tmx │ ├── level37.tmx.meta │ ├── level38.tmx │ ├── level38.tmx.meta │ ├── level39.tmx │ ├── level39.tmx.meta │ ├── level40.tmx │ ├── level40.tmx.meta │ ├── level41.tmx │ ├── level41.tmx.meta │ ├── level42.tmx │ ├── level42.tmx.meta │ ├── level43.tmx │ ├── level43.tmx.meta │ ├── level44.tmx │ ├── level44.tmx.meta │ ├── level45.tmx │ ├── level45.tmx.meta │ ├── level46.tmx │ ├── level46.tmx.meta │ ├── level47.tmx │ ├── level47.tmx.meta │ ├── level48.tmx │ ├── level48.tmx.meta │ ├── level49.tmx │ ├── level49.tmx.meta │ ├── level50.tmx │ ├── level50.tmx.meta │ ├── level51.tmx │ ├── level51.tmx.meta │ ├── level52.tmx │ ├── level52.tmx.meta │ ├── level53.tmx │ ├── level53.tmx.meta │ ├── level54.tmx │ ├── level54.tmx.meta │ ├── level55.tmx │ ├── level55.tmx.meta │ ├── level56.tmx │ ├── level56.tmx.meta │ ├── level57.tmx │ ├── level57.tmx.meta │ ├── level58.tmx │ ├── level58.tmx.meta │ ├── level59.tmx │ ├── level59.tmx.meta │ ├── level60.tmx │ ├── level60.tmx.meta │ ├── level61.tmx │ ├── level61.tmx.meta │ ├── level62.tmx │ ├── level62.tmx.meta │ ├── level63.tmx │ ├── level63.tmx.meta │ ├── level64.tmx │ ├── level64.tmx.meta │ ├── level65.tmx │ ├── level65.tmx.meta │ ├── level66.tmx │ ├── level66.tmx.meta │ ├── level67.tmx │ ├── level67.tmx.meta │ ├── level68.tmx │ ├── level68.tmx.meta │ ├── level69.tmx │ ├── level69.tmx.meta │ ├── level70.tmx │ ├── level70.tmx.meta │ ├── level71.tmx │ ├── level71.tmx.meta │ ├── level72.tmx │ ├── level72.tmx.meta │ ├── level73.tmx │ ├── level73.tmx.meta │ ├── level74.tmx │ ├── level74.tmx.meta │ ├── level75.tmx │ ├── level75.tmx.meta │ ├── level76.tmx │ ├── level76.tmx.meta │ ├── level77.tmx │ ├── level77.tmx.meta │ ├── level78.tmx │ ├── level78.tmx.meta │ ├── level79.tmx │ ├── level79.tmx.meta │ ├── level80.tmx │ └── level80.tmx.meta ├── creator.d.ts ├── jsconfig.json ├── player.js ├── project.json └── settings ├── builder.json └── project.json /README.md: -------------------------------------------------------------------------------- 1 | # RabbitGame 2 | A Rabbit Game Based on Cocos Creator 3 | 之前用Cocos Creator 做的一款仿超级玛丽的游戏,使用的版本为14.2 ,可以直接打包为APK,现在毕设已经完成,游戏分享出来,大家一起学习进步。特别感谢**@谁睡觉叫、@toddlxt、@qbkivlin、@S.H.I.L.E.D** 等大神的热情帮助。源码地址为:兔子闯关5,图片来源于网络。 4 | 5 | 实现的功能如下: 6 | 1. 使用瓦片地图动态生成游戏地图。 7 | 2. 场景跟随。 8 | 3. 游戏对象的碰撞检测(主角与敌人、金币、木桩、地面、河流等)。 9 | 4. 按键和按钮控制主角(上下左右按键或AWDS)。 10 | 5. 主角的行走跳跃。 11 | 6. 主角的变身(吃蘑菇后会变大)。 12 | 7. 得分和时间控制。 13 | 8. 暂停与恢复。 14 | 9. 音乐与音效。 15 | 10. 游戏场景的切换和退出。 16 | -------------------------------------------------------------------------------- /assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "601ff861-3ccd-4bc2-bc75-5c35f2db2186", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/Prefabs/CoinJump.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4066d5f5-0bbf-4105-baed-6fddf0e7f168", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/MenuButton.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d7721449-cef2-4a79-8f36-da5eb97298a7", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/New Sprite(Splash).prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2696f728-8ab4-4689-bb1d-c3840324bc0d", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "bb46499d-3515-40f3-aac3-d2e7a4b6782b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/ReatartButton.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6acd2f0e-e4d4-4454-85f0-82e181f00c0a", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/ScoreBar.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a6483963-78e2-490f-a6b7-f9e8c9844080", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/UpBlock.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b0200bb8-dabf-41f1-8dd0-6105e9f2f698", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/beetle.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7f29cd02-e58e-4041-806a-91573598616b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/bonusBlock.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c306dc34-61e0-4fd6-a62b-9992dd186318", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/bonusWall.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4e2bdccd-3dd0-4916-bcd5-65e9f3f39824", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/bonusblock6.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "da123844-4d1d-4098-b15d-5c532fb20fa6", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/breakableWall.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "df22d28c-25fb-4038-a2fb-2d31643b1242", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/bster.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4b652fd1-a346-4ed5-8040-18d00fbd6cd7", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/castle_finish.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f4900223-db20-4e81-b12b-84d3981598aa", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/coin.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "69f26564-0120-4921-84c0-9634540a98a3", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/collider.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b9ccd3b1-9f44-4dfe-9dab-2ee391a162fd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/colliderPre.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "93980de5-c413-41bf-ab48-8331e172b0c2", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/level1.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d5a633f2-e4a7-4aeb-8c48-7336b0a2f05c", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/mushroom.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "46611ac6-ba59-4295-b289-d71c6e27d3a9", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/over.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fbda1c97-a4dd-49a8-a3d2-49680eb40bcf", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/player_walk.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ad33dd11-52b6-425c-93c8-51942986ac87", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/snail.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e95bcdc0-960d-4de1-976a-ffb888ef8c56", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/Prefabs/snailBlock.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a1ed492a-c455-47cb-a334-765af1acfc72", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "17039934-9b3c-44b3-a05c-e02d48996af9", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/animation/beetle.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5a09bc5a-e5cc-48d6-b40d-5d5eee95616b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/beetled.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "beetled", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.016666666666666666, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "4d511f12-8e15-4a54-b7ef-a24121a5e3a8" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/beetled.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4ee7dd22-07d4-4c13-8e39-dc45d04ccd30", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/bonusBlock.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "225c5e4d-4931-450a-867e-5322ef9e754e", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/bonusBlocked.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "bonusBlocked", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.1, 7 | "sample": 10, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "2f5d8089-61f4-4b81-902c-3a931be792b8" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/bonusBlocked.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e5d48b56-157c-46d2-bf5c-374081c1b0c3", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/bster.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b8b360e7-f37b-4739-b9b3-353f38ff97c1", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/cactus.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dfb8f330-53a6-4ea8-9138-765ad8503abf", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/coin.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "bbf11d08-0cdd-4128-8701-a14474d73fa6", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/crab.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "311cdb8f-286c-4222-a293-74ffc2476518", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/crabDie.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "crabDie", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 1, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "75dceb23-f6d6-4260-87bc-0e5b85a28667" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/crabDie.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "db40908f-9c8e-4d07-93d5-007d378d6069", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/mushroom.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_duration": 0, 6 | "sample": 60, 7 | "curveData": {}, 8 | "events": [] 9 | } -------------------------------------------------------------------------------- /assets/animation/mushroom.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "934f8622-24d9-4bbb-ab0f-5ce526368226", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/player.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_duration": 0, 6 | "sample": 60, 7 | "curveData": {}, 8 | "events": [] 9 | } -------------------------------------------------------------------------------- /assets/animation/player.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "9ca03d9a-1c3f-430d-bfa1-67aaff70094b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/player_die.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "player_die", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 1, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "1d950e0e-c156-41ca-91d1-c5213105e643" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/player_die.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "deb66f55-f8ca-4db2-bc4e-ca33e6cb98ce", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/player_hunker.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "player_hunker", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 1, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "07dbb373-78dd-44a3-a1a3-81e6bc444645" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/player_hunker.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "bf5e4641-c8f6-442c-aa1b-8ad807548c76", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/player_idle.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "player_idle", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 0.016666666666666666, 7 | "sample": 60, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "b1334959-77a3-4574-95ef-50803db2f5e0" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/player_idle.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f0ee03ce-7867-4838-a381-800f70efa578", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/player_jump.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "player_jump", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 1, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "b0cc33fa-eb0f-40b2-b10b-5099877cbad9" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/player_jump.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b240e23c-3dfb-4bff-8328-424f697d80e3", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/player_run.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "766c94a6-03ff-47a7-9470-62e124fe3fa1", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/player_walk.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "04c53391-7a36-4267-b7f0-596a644861b4", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/snail.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a813be53-37c3-4bfc-b084-9809d964951d", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/animation/snaild.anim: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.AnimationClip", 3 | "_name": "snaild", 4 | "_objFlags": 0, 5 | "_rawFiles": null, 6 | "_duration": 1, 7 | "sample": 1, 8 | "speed": 1, 9 | "wrapMode": 1, 10 | "curveData": { 11 | "comps": { 12 | "cc.Sprite": { 13 | "spriteFrame": [ 14 | { 15 | "frame": 0, 16 | "value": { 17 | "__uuid__": "a0fcfe50-c264-444c-bf2c-0edc527924c7" 18 | } 19 | } 20 | ] 21 | } 22 | } 23 | }, 24 | "events": [] 25 | } -------------------------------------------------------------------------------- /assets/animation/snaild.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "67cadff7-b4ed-451d-be62-103f18942d26", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/gfx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "9d3434b3-98b3-48f1-95df-ce529f891500", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/gfx/achievements_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/achievements_button.png -------------------------------------------------------------------------------- /assets/gfx/button_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/button_cancel.png -------------------------------------------------------------------------------- /assets/gfx/button_cancel.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "da3380e0-0944-47c6-bfb7-8100f096e2f7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_cancel": { 9 | "ver": "1.0.3", 10 | "uuid": "b043010c-206f-43fe-b84a-0ddfba5cb4a2", 11 | "rawTextureUuid": "da3380e0-0944-47c6-bfb7-8100f096e2f7", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": -3, 17 | "trimX": 6, 18 | "trimY": 6, 19 | "width": 301, 20 | "height": 150, 21 | "rawWidth": 314, 22 | "rawHeight": 156, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/button_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/button_confirm.png -------------------------------------------------------------------------------- /assets/gfx/button_confirm.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "beac3df2-067d-4acf-b7a3-aba5cd15590c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "button_confirm": { 9 | "ver": "1.0.3", 10 | "uuid": "620134ad-b0cf-45be-ad99-f4440238aa59", 11 | "rawTextureUuid": "beac3df2-067d-4acf-b7a3-aba5cd15590c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": -0.5, 17 | "trimX": 3, 18 | "trimY": 1, 19 | "width": 307, 20 | "height": 155, 21 | "rawWidth": 314, 22 | "rawHeight": 156, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/buy_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/buy_button.png -------------------------------------------------------------------------------- /assets/gfx/buy_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ec503d37-ac00-43a3-8fc0-49f7ab172ea6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "buy_button": { 9 | "ver": "1.0.3", 10 | "uuid": "07176845-da0d-4d07-993d-95b57018fdef", 11 | "rawTextureUuid": "ec503d37-ac00-43a3-8fc0-49f7ab172ea6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0, 17 | "trimX": 4, 18 | "trimY": 2, 19 | "width": 129, 20 | "height": 108, 21 | "rawWidth": 136, 22 | "rawHeight": 112, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "3050c5c5-cf23-4f9b-b996-af109047e489", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/Tileset_1.png -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6eb1aa77-9d10-4f10-b041-557a0dbf4b31", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "Tileset_1": { 9 | "ver": "1.0.3", 10 | "uuid": "1789af71-24d2-4442-b8b1-feed8291e9a7", 11 | "rawTextureUuid": "6eb1aa77-9d10-4f10-b041-557a0dbf4b31", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 884, 20 | "height": 476, 21 | "rawWidth": 884, 22 | "rawHeight": 476, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/Tileset_2.png -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "18561463-591c-4413-aacd-f3c9a32883fa", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "Tileset_2": { 9 | "ver": "1.0.3", 10 | "uuid": "b3257266-0405-448f-9909-95fa5e5d2805", 11 | "rawTextureUuid": "18561463-591c-4413-aacd-f3c9a32883fa", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 884, 20 | "height": 476, 21 | "rawWidth": 884, 22 | "rawHeight": 476, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/Tileset_3.png -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "958bf803-22c5-437d-81a8-e694ed5b83cc", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "Tileset_3": { 9 | "ver": "1.0.3", 10 | "uuid": "06f2c45b-4ac5-4d14-af94-c4f52f8bae79", 11 | "rawTextureUuid": "958bf803-22c5-437d-81a8-e694ed5b83cc", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 884, 20 | "height": 476, 21 | "rawWidth": 884, 22 | "rawHeight": 476, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/Tileset_4.png -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e83aa206-8f0b-4e24-86f2-70184d4cc2ab", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "Tileset_4": { 9 | "ver": "1.0.3", 10 | "uuid": "3ab7c770-de32-4d2f-99fc-210ed9cd09a0", 11 | "rawTextureUuid": "e83aa206-8f0b-4e24-86f2-70184d4cc2ab", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 884, 20 | "height": 476, 21 | "rawWidth": 884, 22 | "rawHeight": 476, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/Tileset_5.png -------------------------------------------------------------------------------- /assets/gfx/game/Tileset_5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0214a61c-75f5-404a-9874-94da3fa7e92e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "Tileset_5": { 9 | "ver": "1.0.3", 10 | "uuid": "ff8728aa-44a1-4147-9b38-48305055c927", 11 | "rawTextureUuid": "0214a61c-75f5-404a-9874-94da3fa7e92e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 884, 20 | "height": 476, 21 | "rawWidth": 884, 22 | "rawHeight": 476, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/arrow_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/arrow_150.png -------------------------------------------------------------------------------- /assets/gfx/game/arrow_150.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "47da4480-27d0-49da-848b-8af1d5b11e19", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "arrow_150": { 9 | "ver": "1.0.3", 10 | "uuid": "6b1e962f-bbf5-4203-896f-00f40dfe8cab", 11 | "rawTextureUuid": "47da4480-27d0-49da-848b-8af1d5b11e19", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": -1, 17 | "trimX": 5, 18 | "trimY": 2, 19 | "width": 305, 20 | "height": 154, 21 | "rawWidth": 314, 22 | "rawHeight": 156, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/background.png -------------------------------------------------------------------------------- /assets/gfx/game/background.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d8f985cd-3850-4588-812d-c4553fbee762", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "background": { 9 | "ver": "1.0.3", 10 | "uuid": "1fb38bd6-83dc-481f-9c8f-673c6c5191f7", 11 | "rawTextureUuid": "d8f985cd-3850-4588-812d-c4553fbee762", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 652, 20 | "height": 512, 21 | "rawWidth": 652, 22 | "rawHeight": 512, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/baloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/baloon.png -------------------------------------------------------------------------------- /assets/gfx/game/baloon.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "46c504c8-96c2-46a9-9735-82bc36909615", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "baloon": { 9 | "ver": "1.0.3", 10 | "uuid": "e9c6a379-4528-4568-8e5b-8a760a5dd1b8", 11 | "rawTextureUuid": "46c504c8-96c2-46a9-9735-82bc36909615", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 64, 20 | "height": 120, 21 | "rawWidth": 64, 22 | "rawHeight": 120, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/bee.png -------------------------------------------------------------------------------- /assets/gfx/game/bee.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8dcb00a3-2362-45a1-990d-e1193e79e4e4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bee": { 9 | "ver": "1.0.3", 10 | "uuid": "e41079bc-d394-49f5-8e11-74ab99c20ce4", 11 | "rawTextureUuid": "8dcb00a3-2362-45a1-990d-e1193e79e4e4", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2.5, 16 | "offsetY": -1.5, 17 | "trimX": 9, 18 | "trimY": 25, 19 | "width": 494, 20 | "height": 52, 21 | "rawWidth": 507, 22 | "rawHeight": 99, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/beetle.png -------------------------------------------------------------------------------- /assets/gfx/game/beetle.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d998a2f9-5555-4473-8d6f-c9240825acd0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "beetle": { 9 | "ver": "1.0.3", 10 | "uuid": "9ce6c1ca-17fc-4017-b264-42cbfeb3bfcb", 11 | "rawTextureUuid": "d998a2f9-5555-4473-8d6f-c9240825acd0", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -3, 16 | "offsetY": -1, 17 | "trimX": 8, 18 | "trimY": 8, 19 | "width": 786, 20 | "height": 50, 21 | "rawWidth": 808, 22 | "rawHeight": 64, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/bird.png -------------------------------------------------------------------------------- /assets/gfx/game/bird.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f45e4638-b3ca-4a7e-8bba-525f31122cf1", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bird": { 9 | "ver": "1.0.3", 10 | "uuid": "72b741bf-7336-4312-a94a-db96d593d594", 11 | "rawTextureUuid": "f45e4638-b3ca-4a7e-8bba-525f31122cf1", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 7.5, 16 | "offsetY": 70.5, 17 | "trimX": 15, 18 | "trimY": 25, 19 | "width": 232, 20 | "height": 497, 21 | "rawWidth": 247, 22 | "rawHeight": 688, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/bonusWall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/bonusWall.png -------------------------------------------------------------------------------- /assets/gfx/game/bonusWall.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "58b5bd9b-6ba9-42e3-9ab5-1b1284f3d893", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bonusWall": { 9 | "ver": "1.0.3", 10 | "uuid": "3bdc6a63-9b4f-44dc-9791-c3045ae2cc61", 11 | "rawTextureUuid": "58b5bd9b-6ba9-42e3-9ab5-1b1284f3d893", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 64, 20 | "height": 65, 21 | "rawWidth": 64, 22 | "rawHeight": 65, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/bonusblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/bonusblock.png -------------------------------------------------------------------------------- /assets/gfx/game/bonusblock.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8a80b506-811e-4587-b32a-93d0d8914b20", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bonusblock": { 9 | "ver": "1.0.3", 10 | "uuid": "812d645a-2183-4ef7-82c4-a6cb56a2fda1", 11 | "rawTextureUuid": "8a80b506-811e-4587-b32a-93d0d8914b20", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 384, 20 | "height": 64, 21 | "rawWidth": 384, 22 | "rawHeight": 64, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/boss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/boss1.png -------------------------------------------------------------------------------- /assets/gfx/game/boss1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "27a3c005-0237-4118-8313-314ecb5f2437", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "boss1": { 9 | "ver": "1.0.3", 10 | "uuid": "a55099d4-44a8-4181-b660-965a7c409484", 11 | "rawTextureUuid": "27a3c005-0237-4118-8313-314ecb5f2437", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 1, 17 | "trimX": 2, 18 | "trimY": 3, 19 | "width": 915, 20 | "height": 229, 21 | "rawWidth": 918, 22 | "rawHeight": 237, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/boss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/boss2.png -------------------------------------------------------------------------------- /assets/gfx/game/boss2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6fc8c20f-6c99-4a9f-9504-d90bfb6a9f42", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "boss2": { 9 | "ver": "1.0.3", 10 | "uuid": "aba99940-1db7-4c78-81d8-d4735edbea63", 11 | "rawTextureUuid": "6fc8c20f-6c99-4a9f-9504-d90bfb6a9f42", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -9, 17 | "trimX": 8, 18 | "trimY": 22, 19 | "width": 691, 20 | "height": 201, 21 | "rawWidth": 707, 22 | "rawHeight": 227, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/boss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/boss3.png -------------------------------------------------------------------------------- /assets/gfx/game/boss3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e9efa435-1add-4e4b-8824-abdfcec163f9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "boss3": { 9 | "ver": "1.0.3", 10 | "uuid": "da360351-effd-46d2-8fd6-f3caad926e00", 11 | "rawTextureUuid": "e9efa435-1add-4e4b-8824-abdfcec163f9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2, 16 | "offsetY": 2.5, 17 | "trimX": 12, 18 | "trimY": 6, 19 | "width": 735, 20 | "height": 382, 21 | "rawWidth": 755, 22 | "rawHeight": 399, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/boss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/boss4.png -------------------------------------------------------------------------------- /assets/gfx/game/boss4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c78f1762-b437-4bc4-b3e3-cf5a6d3f29d8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "boss4": { 9 | "ver": "1.0.3", 10 | "uuid": "57bab89c-9c69-4a94-8cc6-d26aeddd8a21", 11 | "rawTextureUuid": "c78f1762-b437-4bc4-b3e3-cf5a6d3f29d8", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -2.5, 16 | "offsetY": -43.5, 17 | "trimX": 9, 18 | "trimY": 87, 19 | "width": 924, 20 | "height": 908, 21 | "rawWidth": 947, 22 | "rawHeight": 995, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/boss_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/boss_bone.png -------------------------------------------------------------------------------- /assets/gfx/game/boss_bone.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1dccddd4-50e2-4e80-8469-83ac4dcdeb2a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "boss_bone": { 9 | "ver": "1.0.3", 10 | "uuid": "895b7648-8878-4401-a241-60cde42f68c5", 11 | "rawTextureUuid": "1dccddd4-50e2-4e80-8469-83ac4dcdeb2a", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 48, 20 | "height": 43, 21 | "rawWidth": 48, 22 | "rawHeight": 43, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/breakableWall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/breakableWall.png -------------------------------------------------------------------------------- /assets/gfx/game/breakableWall.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ccb8cd5e-c6e9-40d7-ba9f-3dc3785c39e9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "breakableWall": { 9 | "ver": "1.0.3", 10 | "uuid": "a3abd12c-4b6c-4a9a-91f1-215eb37b3b03", 11 | "rawTextureUuid": "ccb8cd5e-c6e9-40d7-ba9f-3dc3785c39e9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 65, 20 | "height": 65, 21 | "rawWidth": 65, 22 | "rawHeight": 65, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/bstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/bstar.png -------------------------------------------------------------------------------- /assets/gfx/game/bstar.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "98cad272-b6b0-4879-b46b-0d8d12c0aa26", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bstar": { 9 | "ver": "1.0.3", 10 | "uuid": "66ec0441-1185-41a1-bbbe-b4635913ac2c", 11 | "rawTextureUuid": "98cad272-b6b0-4879-b46b-0d8d12c0aa26", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 3, 18 | "trimY": 1, 19 | "width": 252, 20 | "height": 62, 21 | "rawWidth": 258, 22 | "rawHeight": 64, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/cactus.png -------------------------------------------------------------------------------- /assets/gfx/game/cactus.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5049b342-e551-44a1-92ab-f54e3e4886f9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "cactus": { 9 | "ver": "1.0.3", 10 | "uuid": "97ce6c48-b0b8-4bc9-b340-5232c0ffcff7", 11 | "rawTextureUuid": "5049b342-e551-44a1-92ab-f54e3e4886f9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2, 16 | "offsetY": -2.5, 17 | "trimX": 4, 18 | "trimY": 5, 19 | "width": 296, 20 | "height": 103, 21 | "rawWidth": 300, 22 | "rawHeight": 108, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/cannon.png -------------------------------------------------------------------------------- /assets/gfx/game/cannon.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c7fe7db6-c30f-4a4a-93cf-18044b87bffc", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "cannon": { 9 | "ver": "1.0.3", 10 | "uuid": "05528849-7db0-4a24-8300-87c69c4a0c9e", 11 | "rawTextureUuid": "c7fe7db6-c30f-4a4a-93cf-18044b87bffc", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -2, 17 | "trimX": 0, 18 | "trimY": 4, 19 | "width": 320, 20 | "height": 55, 21 | "rawWidth": 320, 22 | "rawHeight": 59, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/castle_finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/castle_finish.png -------------------------------------------------------------------------------- /assets/gfx/game/castle_finish.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c3df0109-8ee0-48c4-a1a4-a945fb1757a3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "castle_finish": { 9 | "ver": "1.0.3", 10 | "uuid": "4165521b-f075-4980-845a-0a758ce2f4a6", 11 | "rawTextureUuid": "c3df0109-8ee0-48c4-a1a4-a945fb1757a3", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": -1.5, 17 | "trimX": 7, 18 | "trimY": 3, 19 | "width": 314, 20 | "height": 413, 21 | "rawWidth": 330, 22 | "rawHeight": 416, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/castle_fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/castle_fireball.png -------------------------------------------------------------------------------- /assets/gfx/game/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/chain.png -------------------------------------------------------------------------------- /assets/gfx/game/chain.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fad94e23-010b-4993-bae2-9762d5887ee6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "chain": { 9 | "ver": "1.0.3", 10 | "uuid": "9db87132-5dcd-44fe-8f1c-c82640f68ca3", 11 | "rawTextureUuid": "fad94e23-010b-4993-bae2-9762d5887ee6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 14, 20 | "height": 181, 21 | "rawWidth": 14, 22 | "rawHeight": 181, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/chain2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/chain2.png -------------------------------------------------------------------------------- /assets/gfx/game/chain2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a34ea95a-9839-493e-82c3-11e8217ae186", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "chain2": { 9 | "ver": "1.0.3", 10 | "uuid": "ceafbf1e-44bf-4e3f-91df-e866a224d0e5", 11 | "rawTextureUuid": "a34ea95a-9839-493e-82c3-11e8217ae186", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 14, 20 | "height": 339, 21 | "rawWidth": 14, 22 | "rawHeight": 339, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/clouds_bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/clouds_bonus.png -------------------------------------------------------------------------------- /assets/gfx/game/clouds_bonus.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b4cd9dba-769c-4070-807e-521e2369c9b8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "clouds_bonus": { 9 | "ver": "1.0.3", 10 | "uuid": "529bf30d-080e-4723-8736-3263b02b6298", 11 | "rawTextureUuid": "b4cd9dba-769c-4070-807e-521e2369c9b8", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 2.5, 17 | "trimX": 7, 18 | "trimY": 3, 19 | "width": 406, 20 | "height": 93, 21 | "rawWidth": 421, 22 | "rawHeight": 104, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/coin.png -------------------------------------------------------------------------------- /assets/gfx/game/coin.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "bf6df32f-2791-47e8-b0d3-c34c1cb67ce0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "coin": { 9 | "ver": "1.0.3", 10 | "uuid": "707e0361-aa62-4f09-b9a4-20d7970838dc", 11 | "rawTextureUuid": "bf6df32f-2791-47e8-b0d3-c34c1cb67ce0", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -2, 16 | "offsetY": 0, 17 | "trimX": 2, 18 | "trimY": 1, 19 | "width": 193, 20 | "height": 46, 21 | "rawWidth": 201, 22 | "rawHeight": 48, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/crab.png -------------------------------------------------------------------------------- /assets/gfx/game/crab.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1a2fe989-1089-484d-8a3d-3a897389da30", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "crab": { 9 | "ver": "1.0.3", 10 | "uuid": "2963aad4-dbae-4269-9123-af9763252871", 11 | "rawTextureUuid": "1a2fe989-1089-484d-8a3d-3a897389da30", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": -0.5, 17 | "trimX": 2, 18 | "trimY": 1, 19 | "width": 517, 20 | "height": 78, 21 | "rawWidth": 523, 22 | "rawHeight": 79, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/d_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/d_pad.png -------------------------------------------------------------------------------- /assets/gfx/game/d_pad.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7f007152-004a-45ef-b05d-0c208939a16f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "d_pad": { 9 | "ver": "1.0.3", 10 | "uuid": "956a64b8-7182-4753-a074-a4bbd5beea04", 11 | "rawTextureUuid": "7f007152-004a-45ef-b05d-0c208939a16f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -38.5, 17 | "trimX": 0, 18 | "trimY": 77, 19 | "width": 250, 20 | "height": 173, 21 | "rawWidth": 250, 22 | "rawHeight": 250, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/destroyblock_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/destroyblock_new.png -------------------------------------------------------------------------------- /assets/gfx/game/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/diamond.png -------------------------------------------------------------------------------- /assets/gfx/game/diamond.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "bca00419-0bf1-45f5-95c9-3a72de7a7e54", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "diamond": { 9 | "ver": "1.0.3", 10 | "uuid": "cc105270-b75c-4112-9d53-dde4c69f5e2d", 11 | "rawTextureUuid": "bca00419-0bf1-45f5-95c9-3a72de7a7e54", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 85, 20 | "height": 36, 21 | "rawWidth": 86, 22 | "rawHeight": 37, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/down_button.png -------------------------------------------------------------------------------- /assets/gfx/game/down_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "debfc997-d30f-4df4-b103-befde97bafb6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "down_button": { 9 | "ver": "1.0.3", 10 | "uuid": "2a9e1807-c117-4040-8c4c-8814e979d853", 11 | "rawTextureUuid": "debfc997-d30f-4df4-b103-befde97bafb6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 12.5, 17 | "trimX": 19, 18 | "trimY": 3, 19 | "width": 120, 20 | "height": 38, 21 | "rawWidth": 157, 22 | "rawHeight": 69, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/dpad_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/dpad_button.png -------------------------------------------------------------------------------- /assets/gfx/game/dpad_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b1a19755-3b62-4c46-9554-1bd014e51c65", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "dpad_button": { 9 | "ver": "1.0.3", 10 | "uuid": "26e87745-4e7f-4159-9af0-c6113fdf1a9c", 11 | "rawTextureUuid": "b1a19755-3b62-4c46-9554-1bd014e51c65", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0, 17 | "trimX": 2, 18 | "trimY": 8, 19 | "width": 78, 20 | "height": 44, 21 | "rawWidth": 83, 22 | "rawHeight": 60, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/egg.png -------------------------------------------------------------------------------- /assets/gfx/game/egg.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "10ee0539-c182-45ab-86c9-0fdb6eb183d9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "egg": { 9 | "ver": "1.0.3", 10 | "uuid": "f296dcfe-c0fb-4fb6-beeb-437680feb38c", 11 | "rawTextureUuid": "10ee0539-c182-45ab-86c9-0fdb6eb183d9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -16, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 32, 20 | "height": 32, 21 | "rawWidth": 64, 22 | "rawHeight": 32, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/fall_block_enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/fall_block_enemy.png -------------------------------------------------------------------------------- /assets/gfx/game/flag_stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/flag_stand.png -------------------------------------------------------------------------------- /assets/gfx/game/flag_stand.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b4f8d1aa-9a51-4719-ab52-da7cf4cece93", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "flag_stand": { 9 | "ver": "1.0.3", 10 | "uuid": "b97ccc98-e8ed-42f6-9456-8191f8c731d0", 11 | "rawTextureUuid": "b4f8d1aa-9a51-4719-ab52-da7cf4cece93", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -50, 17 | "trimX": 0, 18 | "trimY": 100, 19 | "width": 64, 20 | "height": 400, 21 | "rawWidth": 64, 22 | "rawHeight": 500, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/flag_waving2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/flag_waving2.png -------------------------------------------------------------------------------- /assets/gfx/game/flag_waving2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fc5b999e-bd58-40ff-831c-c8b65a0f2915", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "flag_waving2": { 9 | "ver": "1.0.3", 10 | "uuid": "d4d73160-8eee-45c3-99cc-32ff999c91bd", 11 | "rawTextureUuid": "fc5b999e-bd58-40ff-831c-c8b65a0f2915", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0, 17 | "trimX": 2, 18 | "trimY": 1, 19 | "width": 145, 20 | "height": 56, 21 | "rawWidth": 150, 22 | "rawHeight": 58, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/flame_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/flame_bullet.png -------------------------------------------------------------------------------- /assets/gfx/game/flame_bullet.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "ea804cea-0f15-4441-8454-f4d2c64838fa", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "flame_bullet": { 9 | "ver": "1.0.3", 10 | "uuid": "c4e96197-b4a0-4ba1-a89d-04d6d74cb666", 11 | "rawTextureUuid": "ea804cea-0f15-4441-8454-f4d2c64838fa", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1.5, 16 | "offsetY": 0, 17 | "trimX": 2, 18 | "trimY": 2, 19 | "width": 118, 20 | "height": 28, 21 | "rawWidth": 125, 22 | "rawHeight": 32, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/flower_shost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/flower_shost.png -------------------------------------------------------------------------------- /assets/gfx/game/flower_shost.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d763c96a-df56-4d10-ae46-50fb0dc6a305", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "flower_shost": { 9 | "ver": "1.0.3", 10 | "uuid": "f93a5dcf-b9d4-4ed7-87b1-f8785d7653ea", 11 | "rawTextureUuid": "d763c96a-df56-4d10-ae46-50fb0dc6a305", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0, 17 | "trimX": 3, 18 | "trimY": 2, 19 | "width": 207, 20 | "height": 59, 21 | "rawWidth": 214, 22 | "rawHeight": 63, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/flower_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/flower_shot.png -------------------------------------------------------------------------------- /assets/gfx/game/flower_shot.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "bbf2805c-e619-457a-bb42-711c08eb9b94", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "flower_shot": { 9 | "ver": "1.0.3", 10 | "uuid": "5f5631ac-b0ba-4512-8bf5-c942f03359a6", 11 | "rawTextureUuid": "bbf2805c-e619-457a-bb42-711c08eb9b94", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -0.5, 17 | "trimX": 3, 18 | "trimY": 1, 19 | "width": 210, 20 | "height": 63, 21 | "rawWidth": 216, 22 | "rawHeight": 64, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/flying_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/flying_fish.png -------------------------------------------------------------------------------- /assets/gfx/game/flying_fish.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a324b86e-4643-42ff-a80b-c30309367403", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "flying_fish": { 9 | "ver": "1.0.3", 10 | "uuid": "be5b5940-de9d-4a4b-b126-5700439ab17d", 11 | "rawTextureUuid": "a324b86e-4643-42ff-a80b-c30309367403", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 4, 18 | "trimY": 4, 19 | "width": 171, 20 | "height": 71, 21 | "rawWidth": 179, 22 | "rawHeight": 79, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/frog.png -------------------------------------------------------------------------------- /assets/gfx/game/frog.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b92d3c9d-6e7e-47b5-97bc-53c1898c1f9d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "frog": { 9 | "ver": "1.0.3", 10 | "uuid": "57d48455-3fd2-426e-9008-96407dfb15cb", 11 | "rawTextureUuid": "b92d3c9d-6e7e-47b5-97bc-53c1898c1f9d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2.5, 16 | "offsetY": -1, 17 | "trimX": 19, 18 | "trimY": 6, 19 | "width": 460, 20 | "height": 92, 21 | "rawWidth": 493, 22 | "rawHeight": 102, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/hedgehog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/hedgehog.png -------------------------------------------------------------------------------- /assets/gfx/game/hedgehog.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "722b7d95-d408-4e08-b4db-7744bd67a4d6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "hedgehog": { 9 | "ver": "1.0.3", 10 | "uuid": "82b0c32c-f30d-415d-840e-19bbfcf1bf2e", 11 | "rawTextureUuid": "722b7d95-d408-4e08-b4db-7744bd67a4d6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 2.5, 16 | "offsetY": -0.5, 17 | "trimX": 8, 18 | "trimY": 3, 19 | "width": 217, 20 | "height": 55, 21 | "rawWidth": 228, 22 | "rawHeight": 60, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/jump_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/jump_arrow.png -------------------------------------------------------------------------------- /assets/gfx/game/jump_arrow.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "a3872fd4-200b-4f17-a4de-a2672f34bcc6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "jump_arrow": { 9 | "ver": "1.0.3", 10 | "uuid": "81688009-c946-45ee-b0c6-9a8e6ad686eb", 11 | "rawTextureUuid": "a3872fd4-200b-4f17-a4de-a2672f34bcc6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": -4, 17 | "trimX": 24, 18 | "trimY": 33, 19 | "width": 321, 20 | "height": 126, 21 | "rawWidth": 370, 22 | "rawHeight": 184, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/moving_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/moving_platform.png -------------------------------------------------------------------------------- /assets/gfx/game/moving_platform.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5b09b93e-fba1-4c6b-8fa2-d425bcfebddb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "moving_platform": { 9 | "ver": "1.0.3", 10 | "uuid": "6054ca86-434b-4856-91eb-f9492628b746", 11 | "rawTextureUuid": "5b09b93e-fba1-4c6b-8fa2-d425bcfebddb", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 145, 20 | "height": 22, 21 | "rawWidth": 145, 22 | "rawHeight": 22, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/mushroom.png -------------------------------------------------------------------------------- /assets/gfx/game/mushroom.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "de2f54c4-864d-491d-9ae3-75a6533f3772", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "mushroom": { 9 | "ver": "1.0.3", 10 | "uuid": "d92bc237-d219-425d-838f-7cd9e79dc875", 11 | "rawTextureUuid": "de2f54c4-864d-491d-9ae3-75a6533f3772", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 4, 17 | "trimX": 5, 18 | "trimY": 4, 19 | "width": 55, 20 | "height": 58, 21 | "rawWidth": 64, 22 | "rawHeight": 74, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/mushroom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/mushroom2.png -------------------------------------------------------------------------------- /assets/gfx/game/mushroom2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "869b8399-77a7-4af9-a004-f9620c90d6dc", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "mushroom2": { 9 | "ver": "1.0.3", 10 | "uuid": "8ddfc993-2236-4a4f-ad25-ac5b5c4bd420", 11 | "rawTextureUuid": "869b8399-77a7-4af9-a004-f9620c90d6dc", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 4, 17 | "trimX": 5, 18 | "trimY": 4, 19 | "width": 55, 20 | "height": 58, 21 | "rawWidth": 64, 22 | "rawHeight": 74, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/mushroom22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/mushroom22.png -------------------------------------------------------------------------------- /assets/gfx/game/mushroom22.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fc973258-1051-4be7-a396-5c6bb64dab46", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "mushroom22": { 9 | "ver": "1.0.3", 10 | "uuid": "b94f8751-ddd9-4cf5-8791-f2bbd5a27ed9", 11 | "rawTextureUuid": "fc973258-1051-4be7-a396-5c6bb64dab46", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 4, 17 | "trimX": 5, 18 | "trimY": 4, 19 | "width": 55, 20 | "height": 58, 21 | "rawWidth": 64, 22 | "rawHeight": 74, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/octopus.png -------------------------------------------------------------------------------- /assets/gfx/game/octopus.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fac1b0bd-5bcb-4ec9-bfaa-9ec3125e89f1", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "octopus": { 9 | "ver": "1.0.3", 10 | "uuid": "fa11c39d-8704-49a4-93a7-8875c778339d", 11 | "rawTextureUuid": "fac1b0bd-5bcb-4ec9-bfaa-9ec3125e89f1", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -2.5, 16 | "offsetY": 0.5, 17 | "trimX": 4, 18 | "trimY": 5, 19 | "width": 239, 20 | "height": 76, 21 | "rawWidth": 252, 22 | "rawHeight": 87, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/pause_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/pause_button.png -------------------------------------------------------------------------------- /assets/gfx/game/pause_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d2e0d1a7-f447-49fd-8b02-de68744ebab4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "pause_button": { 9 | "ver": "1.0.3", 10 | "uuid": "031a154e-a5c7-4955-977a-2d420e0d56b8", 11 | "rawTextureUuid": "d2e0d1a7-f447-49fd-8b02-de68744ebab4", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": -0.5, 17 | "trimX": 3, 18 | "trimY": 1, 19 | "width": 185, 20 | "height": 93, 21 | "rawWidth": 190, 22 | "rawHeight": 94, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/platform_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/platform_circle.png -------------------------------------------------------------------------------- /assets/gfx/game/platform_circle.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "9518ffae-d3d7-432c-b316-83cc648fb8cf", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "platform_circle": { 9 | "ver": "1.0.3", 10 | "uuid": "f0982fdd-4a59-4328-a4c9-a6da95d4ee80", 11 | "rawTextureUuid": "9518ffae-d3d7-432c-b316-83cc648fb8cf", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 31, 20 | "height": 31, 21 | "rawWidth": 31, 22 | "rawHeight": 31, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/platforms.png -------------------------------------------------------------------------------- /assets/gfx/game/platforms.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8c5aae1d-1f66-4df4-9e47-c8efd890fb43", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "platforms": { 9 | "ver": "1.0.3", 10 | "uuid": "36280add-063a-420a-99a2-9c164fb4460f", 11 | "rawTextureUuid": "8c5aae1d-1f66-4df4-9e47-c8efd890fb43", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": -0.5, 17 | "trimX": 3, 18 | "trimY": 2, 19 | "width": 141, 20 | "height": 167, 21 | "rawWidth": 148, 22 | "rawHeight": 170, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/platforms_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/platforms_2.png -------------------------------------------------------------------------------- /assets/gfx/game/platforms_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "277e1495-4c7e-45d1-beac-0ab976ca4d4a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "platforms_2": { 9 | "ver": "1.0.3", 10 | "uuid": "cc35cc8b-fecb-4bdc-a5c8-82c7e69f9af1", 11 | "rawTextureUuid": "277e1495-4c7e-45d1-beac-0ab976ca4d4a", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 4, 17 | "trimX": 1, 18 | "trimY": 2, 19 | "width": 145, 20 | "height": 158, 21 | "rawWidth": 148, 22 | "rawHeight": 170, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/player_max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/player_max.png -------------------------------------------------------------------------------- /assets/gfx/game/player_max.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "cc490849-efd7-4bf2-b176-130850a24edd", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "player_max": { 9 | "ver": "1.0.3", 10 | "uuid": "a385e8dd-1edf-4d30-bb70-673ec81c24d6", 11 | "rawTextureUuid": "cc490849-efd7-4bf2-b176-130850a24edd", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1.5, 16 | "offsetY": -6.5, 17 | "trimX": 5, 18 | "trimY": 15, 19 | "width": 852, 20 | "height": 463, 21 | "rawWidth": 865, 22 | "rawHeight": 480, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/player_wu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/player_wu.png -------------------------------------------------------------------------------- /assets/gfx/game/player_wu.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "caabe98d-2d03-473c-981f-4ba1611ab76d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "player_wu": { 9 | "ver": "1.0.3", 10 | "uuid": "1f840553-3333-4192-8b86-4ef7414be62d", 11 | "rawTextureUuid": "caabe98d-2d03-473c-981f-4ba1611ab76d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -3.5, 17 | "trimX": 6, 18 | "trimY": 9, 19 | "width": 853, 20 | "height": 469, 21 | "rawWidth": 865, 22 | "rawHeight": 480, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/plus_coins_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/plus_coins_button.png -------------------------------------------------------------------------------- /assets/gfx/game/restart_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/restart_button.png -------------------------------------------------------------------------------- /assets/gfx/game/resume_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/resume_button.png -------------------------------------------------------------------------------- /assets/gfx/game/resume_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0e39d2a1-f3ca-4dce-a052-25cf5be66055", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "resume_button": { 9 | "ver": "1.0.3", 10 | "uuid": "0481ec0d-a3cd-4ae5-b6bd-f31dc1d69312", 11 | "rawTextureUuid": "0e39d2a1-f3ca-4dce-a052-25cf5be66055", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -0.5, 17 | "trimX": 5, 18 | "trimY": 1, 19 | "width": 304, 20 | "height": 155, 21 | "rawWidth": 314, 22 | "rawHeight": 156, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/saw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/saw.png -------------------------------------------------------------------------------- /assets/gfx/game/saw.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "58af92fb-d853-4040-ad18-e7291f740273", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "saw": { 9 | "ver": "1.0.3", 10 | "uuid": "51574492-6496-4be7-8201-05c2001ad9e1", 11 | "rawTextureUuid": "58af92fb-d853-4040-ad18-e7291f740273", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 171, 20 | "height": 172, 21 | "rawWidth": 172, 22 | "rawHeight": 172, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/sea_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/sea_back.png -------------------------------------------------------------------------------- /assets/gfx/game/sea_back.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6b82a13b-82e5-4a36-9afc-adf78e4706c7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sea_back": { 9 | "ver": "1.0.3", 10 | "uuid": "cb1e06da-1006-465b-8489-c6e5fb917564", 11 | "rawTextureUuid": "6b82a13b-82e5-4a36-9afc-adf78e4706c7", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 16, 20 | "height": 512, 21 | "rawWidth": 16, 22 | "rawHeight": 512, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/sea_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/sea_bomb.png -------------------------------------------------------------------------------- /assets/gfx/game/sea_bomb.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d70c4e41-4446-4ef4-afb9-15e9472bf3da", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sea_bomb": { 9 | "ver": "1.0.3", 10 | "uuid": "f1bbb932-b9b0-4324-a740-80d36ce1d67d", 11 | "rawTextureUuid": "d70c4e41-4446-4ef4-afb9-15e9472bf3da", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -6, 16 | "offsetY": -0.5, 17 | "trimX": 6, 18 | "trimY": 5, 19 | "width": 334, 20 | "height": 71, 21 | "rawWidth": 358, 22 | "rawHeight": 80, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/sea_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/sea_fish.png -------------------------------------------------------------------------------- /assets/gfx/game/sea_fish.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "334db9e5-7c1a-4437-a1f8-9b2747bbb9f0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "sea_fish": { 9 | "ver": "1.0.3", 10 | "uuid": "91130e72-b86c-4031-aa62-c1808ba8a8d4", 11 | "rawTextureUuid": "334db9e5-7c1a-4437-a1f8-9b2747bbb9f0", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0, 17 | "trimX": 4, 18 | "trimY": 2, 19 | "width": 391, 20 | "height": 54, 21 | "rawWidth": 398, 22 | "rawHeight": 58, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/selectlevel_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/selectlevel_button.png -------------------------------------------------------------------------------- /assets/gfx/game/shot_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/shot_button.png -------------------------------------------------------------------------------- /assets/gfx/game/shot_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "93632973-ac32-4faa-a4b4-aa386750ce81", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "shot_button": { 9 | "ver": "1.0.3", 10 | "uuid": "80ea6476-d546-4a3e-a0b5-3c2433304401", 11 | "rawTextureUuid": "93632973-ac32-4faa-a4b4-aa386750ce81", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1.5, 16 | "offsetY": -4, 17 | "trimX": 24, 18 | "trimY": 33, 19 | "width": 319, 20 | "height": 126, 21 | "rawWidth": 370, 22 | "rawHeight": 184, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/snail.png -------------------------------------------------------------------------------- /assets/gfx/game/snail.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "427d0a4b-cc17-4658-a96b-14d0a27d34d3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "snail": { 9 | "ver": "1.0.3", 10 | "uuid": "bda5736f-58d7-4f32-b5ce-44e778d54222", 11 | "rawTextureUuid": "427d0a4b-cc17-4658-a96b-14d0a27d34d3", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 3, 16 | "offsetY": -4.5, 17 | "trimX": 16, 18 | "trimY": 12, 19 | "width": 427, 20 | "height": 53, 21 | "rawWidth": 453, 22 | "rawHeight": 68, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/snowball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/snowball.png -------------------------------------------------------------------------------- /assets/gfx/game/snowball.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "12f8665d-aafb-4801-8fd9-60d1aced05f9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "snowball": { 9 | "ver": "1.0.3", 10 | "uuid": "3c52ba5b-0c72-4f32-a0f0-fe038b100a5b", 11 | "rawTextureUuid": "12f8665d-aafb-4801-8fd9-60d1aced05f9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0.5, 17 | "trimX": 1, 18 | "trimY": 0, 19 | "width": 43, 20 | "height": 43, 21 | "rawWidth": 44, 22 | "rawHeight": 44, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/spider.png -------------------------------------------------------------------------------- /assets/gfx/game/spider.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "96680016-307c-4e6a-bd75-5d5588726045", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "spider": { 9 | "ver": "1.0.3", 10 | "uuid": "f11a47d6-0d71-4b96-8d06-e244ec6956d8", 11 | "rawTextureUuid": "96680016-307c-4e6a-bd75-5d5588726045", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -4.5, 16 | "offsetY": 0.5, 17 | "trimX": 6, 18 | "trimY": 3, 19 | "width": 234, 20 | "height": 63, 21 | "rawWidth": 255, 22 | "rawHeight": 70, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/stand_dest_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/stand_dest_block.png -------------------------------------------------------------------------------- /assets/gfx/game/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/star.png -------------------------------------------------------------------------------- /assets/gfx/game/star.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3adeca06-6c4e-4cfe-bb6c-fde21c80a6b1", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "star": { 9 | "ver": "1.0.3", 10 | "uuid": "a2f7aa2f-4c29-488b-87d0-a1641c12e778", 11 | "rawTextureUuid": "3adeca06-6c4e-4cfe-bb6c-fde21c80a6b1", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -1, 17 | "trimX": 1, 18 | "trimY": 3, 19 | "width": 138, 20 | "height": 66, 21 | "rawWidth": 140, 22 | "rawHeight": 70, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/swim_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/swim_bubble.png -------------------------------------------------------------------------------- /assets/gfx/game/swim_bubble.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "88faf2b1-f961-47db-a3ae-815145a753e8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "swim_bubble": { 9 | "ver": "1.0.3", 10 | "uuid": "b2cc0a3b-20c3-4858-bf8f-bda74a392155", 11 | "rawTextureUuid": "88faf2b1-f961-47db-a3ae-815145a753e8", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 25, 20 | "height": 25, 21 | "rawWidth": 25, 22 | "rawHeight": 25, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/trampoline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/trampoline.png -------------------------------------------------------------------------------- /assets/gfx/game/trampoline.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "09066bfa-e9f9-4e26-a5a4-4ef27e7c4841", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "trampoline": { 9 | "ver": "1.0.3", 10 | "uuid": "9256ab5d-5088-4a37-818e-5113efc8c91d", 11 | "rawTextureUuid": "09066bfa-e9f9-4e26-a5a4-4ef27e7c4841", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -3, 17 | "trimX": 4, 18 | "trimY": 7, 19 | "width": 56, 20 | "height": 196, 21 | "rawWidth": 64, 22 | "rawHeight": 204, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/turtle.png -------------------------------------------------------------------------------- /assets/gfx/game/turtle.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e11f8318-4a3e-4372-84cc-71582cf69d02", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "turtle": { 9 | "ver": "1.0.3", 10 | "uuid": "f270c351-290d-43f6-968a-cdee6ac7c32c", 11 | "rawTextureUuid": "e11f8318-4a3e-4372-84cc-71582cf69d02", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -0.5, 17 | "trimX": 3, 18 | "trimY": 2, 19 | "width": 271, 20 | "height": 42, 21 | "rawWidth": 277, 22 | "rawHeight": 45, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/game/underground_bonus_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/underground_bonus_back.png -------------------------------------------------------------------------------- /assets/gfx/game/vbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/game/vbird.png -------------------------------------------------------------------------------- /assets/gfx/game/vbird.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "833d6c44-f99d-499d-a0ab-822e71fc5017", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "vbird": { 9 | "ver": "1.0.3", 10 | "uuid": "403031e4-1444-4384-9ba5-def822936923", 11 | "rawTextureUuid": "833d6c44-f99d-499d-a0ab-822e71fc5017", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": -0.5, 17 | "trimX": 8, 18 | "trimY": 6, 19 | "width": 490, 20 | "height": 103, 21 | "rawWidth": 508, 22 | "rawHeight": 114, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/leaderboards_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/leaderboards_button.png -------------------------------------------------------------------------------- /assets/gfx/level_select.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "5bdb7894-b004-49e1-957d-53edd63e04aa", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/gfx/level_select/blank_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/level_select/blank_button.png -------------------------------------------------------------------------------- /assets/gfx/level_select/button_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/level_select/button_prev.png -------------------------------------------------------------------------------- /assets/gfx/level_select/castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/level_select/castle.png -------------------------------------------------------------------------------- /assets/gfx/level_select/castle.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b04bcee3-582e-4f62-a776-0b08f704f9ab", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "castle": { 9 | "ver": "1.0.3", 10 | "uuid": "c49c7f9c-764c-4d3c-94d4-8ca1a95625e6", 11 | "rawTextureUuid": "b04bcee3-582e-4f62-a776-0b08f704f9ab", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 6, 18 | "trimY": 1, 19 | "width": 48, 20 | "height": 58, 21 | "rawWidth": 60, 22 | "rawHeight": 60, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/level_select/changearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/level_select/changearrow.png -------------------------------------------------------------------------------- /assets/gfx/level_select/reset_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/level_select/reset_button.png -------------------------------------------------------------------------------- /assets/gfx/level_select/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/level_select/stars.png -------------------------------------------------------------------------------- /assets/gfx/level_select/stars.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "50181fc3-bb01-495e-b5b3-8c078d8de0ba", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "stars": { 9 | "ver": "1.0.3", 10 | "uuid": "9d18715a-79bf-46fa-8aa7-71d122b98ffa", 11 | "rawTextureUuid": "50181fc3-bb01-495e-b5b3-8c078d8de0ba", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0.5, 17 | "trimX": 3, 18 | "trimY": 2, 19 | "width": 115, 20 | "height": 115, 21 | "rawWidth": 120, 22 | "rawHeight": 120, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/loading_background.png -------------------------------------------------------------------------------- /assets/gfx/menu.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "8227af7e-3e4a-4543-90c3-bf37d88e6e1c", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/gfx/menu/menu_effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/menu_effects.png -------------------------------------------------------------------------------- /assets/gfx/menu/menu_effects.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "4fbb5ae5-8a6f-4555-957b-80945db1978c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "menu_effects": { 9 | "ver": "1.0.3", 10 | "uuid": "ae07a4cf-b570-4d67-a0e6-e4d5106729e0", 11 | "rawTextureUuid": "4fbb5ae5-8a6f-4555-957b-80945db1978c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 1.5, 16 | "offsetY": 0, 17 | "trimX": 4, 18 | "trimY": 0, 19 | "width": 59, 20 | "height": 64, 21 | "rawWidth": 64, 22 | "rawHeight": 64, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/menu_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/menu_exit.png -------------------------------------------------------------------------------- /assets/gfx/menu/menu_exit.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3e6a0032-5bf7-43d4-81b9-1ba3c79a026c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "menu_exit": { 9 | "ver": "1.0.3", 10 | "uuid": "fbe25600-74ad-40a5-b02f-290100b21397", 11 | "rawTextureUuid": "3e6a0032-5bf7-43d4-81b9-1ba3c79a026c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 4, 18 | "trimY": 0, 19 | "width": 146, 20 | "height": 153, 21 | "rawWidth": 154, 22 | "rawHeight": 153, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/menu_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/menu_share.png -------------------------------------------------------------------------------- /assets/gfx/menu/menu_share.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "06e8fe1c-e28c-477f-83c8-f19be9e30ae3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "menu_share": { 9 | "ver": "1.0.3", 10 | "uuid": "9d722349-f8a6-43e6-aa98-4aab862fa2f2", 11 | "rawTextureUuid": "06e8fe1c-e28c-477f-83c8-f19be9e30ae3", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 0, 17 | "trimX": 5, 18 | "trimY": 0, 19 | "width": 138, 20 | "height": 150, 21 | "rawWidth": 150, 22 | "rawHeight": 150, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/menu_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/menu_sound.png -------------------------------------------------------------------------------- /assets/gfx/menu/menu_sound.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "51257549-ff56-4cf0-9661-01248bb0dc2c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "menu_sound": { 9 | "ver": "1.0.3", 10 | "uuid": "e7e198c0-79f3-4b28-bcd3-cf449a1c32b8", 11 | "rawTextureUuid": "51257549-ff56-4cf0-9661-01248bb0dc2c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 4, 18 | "trimY": 0, 19 | "width": 146, 20 | "height": 153, 21 | "rawWidth": 154, 22 | "rawHeight": 153, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/more_games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/more_games.png -------------------------------------------------------------------------------- /assets/gfx/menu/more_games.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2e24d1e0-425f-4ab0-95c3-aff554ae2a54", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "more_games": { 9 | "ver": "1.0.3", 10 | "uuid": "f0e37df2-bc1e-4236-b14c-31a2da16e9c6", 11 | "rawTextureUuid": "2e24d1e0-425f-4ab0-95c3-aff554ae2a54", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 149, 20 | "height": 150, 21 | "rawWidth": 150, 22 | "rawHeight": 150, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/play_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/play_big.png -------------------------------------------------------------------------------- /assets/gfx/menu/play_big.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e14de090-bcc5-4308-b56b-0765e7f74c04", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "play_big": { 9 | "ver": "1.0.3", 10 | "uuid": "df59b9ab-1e31-4023-961a-4d5205c7768c", 11 | "rawTextureUuid": "e14de090-bcc5-4308-b56b-0765e7f74c04", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 0, 17 | "trimX": 3, 18 | "trimY": 0, 19 | "width": 157, 20 | "height": 165, 21 | "rawWidth": 165, 22 | "rawHeight": 165, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/rate_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/rate_menu.png -------------------------------------------------------------------------------- /assets/gfx/menu/rate_menu.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7790d6ed-47e7-4c02-983b-564105a0f608", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "rate_menu": { 9 | "ver": "1.0.3", 10 | "uuid": "541c317f-9df5-454f-a48f-017d7835b89d", 11 | "rawTextureUuid": "7790d6ed-47e7-4c02-983b-564105a0f608", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -0.5, 16 | "offsetY": 0, 17 | "trimX": 3, 18 | "trimY": 0, 19 | "width": 143, 20 | "height": 150, 21 | "rawWidth": 150, 22 | "rawHeight": 150, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/slider_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/slider_button.png -------------------------------------------------------------------------------- /assets/gfx/menu/slider_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d45e295b-125d-4ec5-96de-d88df1925789", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "slider_button": { 9 | "ver": "1.0.3", 10 | "uuid": "10550054-f5c8-451f-9507-588591458d7c", 11 | "rawTextureUuid": "d45e295b-125d-4ec5-96de-d88df1925789", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0, 17 | "trimX": 4, 18 | "trimY": 0, 19 | "width": 141, 20 | "height": 77, 21 | "rawWidth": 148, 22 | "rawHeight": 77, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/menu/sound_adjust_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu/sound_adjust_screen.png -------------------------------------------------------------------------------- /assets/gfx/menu_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/menu_exit.png -------------------------------------------------------------------------------- /assets/gfx/menu_exit.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7f3e4729-0023-43c2-bdcf-7e801f1c42bd", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "menu_exit": { 9 | "ver": "1.0.3", 10 | "uuid": "a59ac458-4c82-479d-8de2-7bc31bfc88c9", 11 | "rawTextureUuid": "7f3e4729-0023-43c2-bdcf-7e801f1c42bd", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 203, 20 | "height": 82, 21 | "rawWidth": 203, 22 | "rawHeight": 82, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/splash.png -------------------------------------------------------------------------------- /assets/gfx/splash.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "59618f99-4dc3-4661-952d-9527427b1a5c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "splash": { 9 | "ver": "1.0.3", 10 | "uuid": "ff3670f4-3d46-4658-933c-05fbad203945", 11 | "rawTextureUuid": "59618f99-4dc3-4661-952d-9527427b1a5c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 1, 16 | "offsetY": 0, 17 | "trimX": 57, 18 | "trimY": 0, 19 | "width": 488, 20 | "height": 90, 21 | "rawWidth": 600, 22 | "rawHeight": 90, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/storeSmall_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/storeSmall_button.png -------------------------------------------------------------------------------- /assets/gfx/store_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/store_button.png -------------------------------------------------------------------------------- /assets/gfx/store_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "958875cd-4faa-48a1-8ec1-3224fd320173", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "store_button": { 9 | "ver": "1.0.3", 10 | "uuid": "47768b5e-b462-497e-a2df-7d64b93f8acc", 11 | "rawTextureUuid": "958875cd-4faa-48a1-8ec1-3224fd320173", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -0.5, 17 | "trimX": 4, 18 | "trimY": 1, 19 | "width": 306, 20 | "height": 155, 21 | "rawWidth": 314, 22 | "rawHeight": 156, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/gfx/store_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/gfx/store_icons.png -------------------------------------------------------------------------------- /assets/gfx/store_icons.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8f1a0c45-d77f-49bf-b6fc-4e17ef77b7c9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "store_icons": { 9 | "ver": "1.0.3", 10 | "uuid": "beb9dfb2-1492-4429-92d7-5cf980d2673e", 11 | "rawTextureUuid": "8f1a0c45-d77f-49bf-b6fc-4e17ef77b7c9", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -2.5, 16 | "offsetY": 1, 17 | "trimX": 2, 18 | "trimY": 2, 19 | "width": 363, 20 | "height": 142, 21 | "rawWidth": 372, 22 | "rawHeight": 148, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/scence.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "3b54e348-ab21-437e-b551-c4eae8c6dd02", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/scence/LevelMenu.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b9d86fc6-5dd1-4905-83a6-614142c81b5b", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/scence/Main.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0c4a5dc1-a8c0-47fb-a64c-35836846b037", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/scence/Open.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "47eda8cb-b425-4d06-b362-48cc05e9ad27", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /assets/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "49961f94-8a24-4c1f-a502-8c7d0867bfea", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/scripts/BackOpenScence.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | }, 6 | 7 | // use this for initialization 8 | onLoad: function () { 9 | this.node.on(cc.Node.EventType.TOUCH_START, function () 10 | { 11 | cc.director.loadScene("Open"); 12 | }); 13 | }, 14 | }); 15 | -------------------------------------------------------------------------------- /assets/scripts/BackOpenScence.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "a2afe656-a155-40fe-bce2-dcfa2b7db929", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Begin.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | clickAudio: { 6 | default: null, 7 | url: cc.AudioClip 8 | } 9 | }, 10 | 11 | // use this for initialization 12 | onLoad: function () 13 | { 14 | 15 | this.node.on("touchstart",function () 16 | { 17 | cc.audioEngine.play(this.clickAudio, false, Global.volume); 18 | cc.director.resume(); 19 | cc.director.loadScene("LevelMenu"); 20 | cc.find('toLevelMenu').active = false; 21 | }); 22 | }, 23 | }); 24 | -------------------------------------------------------------------------------- /assets/scripts/Cameras.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "dbeb0c1f-c505-41b2-b632-b6b963cd35c6", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Coin.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "3ba94c2b-bc8c-4a28-9e89-afc27905fcca", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/CoinJump.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "8ebf1a98-bfb8-446f-9999-96c6b5bedb35", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/CreateCoin.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "a01b6fa0-7e5b-4cc4-add1-c93662ca441a", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Enemy.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "7fdf64b4-2e3a-4828-8024-cd0d9c11e1e8", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Follow.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | target: { 6 | default: null, 7 | type: cc.Node 8 | } 9 | }, 10 | 11 | // use this for initialization 12 | onLoad: function () { 13 | // 由于需要键盘操作所以只能在 PC 才可用 14 | this.node.active = !cc.sys.isMobile; 15 | 16 | if (!this.target) { 17 | return; 18 | } 19 | var follow = cc.follow(this.target, cc.rect(0,0, 2000,2000)); 20 | this.node.runAction(follow); 21 | } 22 | }); -------------------------------------------------------------------------------- /assets/scripts/Follow.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "6e1d61bc-9627-4c0c-837a-0a0cb5749ec5", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/GameBegin.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "5b76f4fa-8333-470b-8f61-7730e5c60cd1", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Globals.js: -------------------------------------------------------------------------------- 1 | window.Global = { 2 | isGotCoin: false, 3 | addSpeed: 1, 4 | level2Open:false, 5 | enemyIsAlive:true, 6 | playIsAlive:true, 7 | volume:0, 8 | }; -------------------------------------------------------------------------------- /assets/scripts/Globals.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "dca888e9-b5ad-43b8-afdb-5ee4352f0f33", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/PauseAndResume.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "241ed4e8-85be-4022-b82e-1547269c6b0b", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Player.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "2e66e260-7be0-4be7-ba98-de64501c3e79", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/PreBegin.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | 6 | }, 7 | 8 | // use this for initialization 9 | onLoad: function () 10 | { 11 | this.node.on(cc.Node.EventType.TOUCH_START, function () 12 | { 13 | cc.director.loadScene("Open"); 14 | }); 15 | }, 16 | 17 | // called every frame, uncomment this function to activate update callback 18 | // update: function (dt) { 19 | 20 | // }, 21 | }); 22 | -------------------------------------------------------------------------------- /assets/scripts/PreBegin.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "f7dbb849-ff00-4286-a52d-87b6087ab64f", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Score.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "e9d84446-9f3f-4bc1-8930-65f101baa0a0", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/Snail.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "935b8eb3-99eb-462e-939f-12248ebc78cc", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/TiledMap01.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "21a940e4-5b92-4c5e-805f-1393eabb1494", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/begin.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "c4c13b79-9d42-4998-8c5c-480a6d603c00", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/cancel.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "495b2877-f640-478b-acc6-cefc0bf1c41e", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/castle_finish.js: -------------------------------------------------------------------------------- 1 | cc.Class({ 2 | extends: cc.Component, 3 | 4 | properties: { 5 | high_score_Audio: { 6 | default: null, 7 | url: cc.AudioClip 8 | } 9 | }, 10 | 11 | // use this for initialization 12 | onLoad: function () 13 | { 14 | cc.director.getCollisionManager().enabled = true; 15 | }, 16 | onCollisionEnter: function (other, self) 17 | { 18 | this.scheduleOnce(function () 19 | { 20 | cc.audioEngine.play(this.high_score_Audio, false, Global.volume); 21 | }, 2); 22 | cc.director.loadScene('LevelMenu'); 23 | Global.level2Open = true; 24 | } 25 | }); 26 | -------------------------------------------------------------------------------- /assets/scripts/castle_finish.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "38bb4220-dd15-43c4-b343-a69688fced2f", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/floorMove.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "035bca1a-6bd7-43c9-ae6f-8a822b4b3149", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/leve2.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "aed8802b-a46c-4f98-99c7-8c4c3b8f9640", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/level1.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "f6cb0008-b872-4648-996e-8a8a2791a874", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/mushroom.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "fb497f47-8796-4391-aa85-b402e7f5bdcd", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/storageManager.js: -------------------------------------------------------------------------------- 1 | var storageManager = (function (){ 2 | var spriteFrameCache = null; 3 | if(!cc.sys.localStorage.highestScore) 4 | { 5 | cc.sys.localStorage.highestScore = 0; 6 | } 7 | return { 8 | getHighestScore:function(){ 9 | return cc.sys.localStorage.highestScore; 10 | }, 11 | setHighestScore:function(score){ 12 | cc.sys.localStorage.highestScore = score; 13 | } 14 | }; 15 | })(); 16 | module.exports = storageManager; -------------------------------------------------------------------------------- /assets/scripts/storageManager.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "f7aa0a99-c6bc-4984-9ee8-9ae9f4e36122", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/time.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "4130bae0-5108-41bc-9d37-50ead77ac8b1", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/touchButton.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "87eca1bd-513e-4391-b3da-38a09e0d9118", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/scripts/volume.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "uuid": "817a767c-82a4-4ea9-a669-73693d20d5ed", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /assets/sound.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "d6f439b0-b783-4ff8-b76f-4032e0ca5c78", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/click.mp3 -------------------------------------------------------------------------------- /assets/sound/click.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "8b26d886-2343-49cf-bbf5-e5167c63bd14", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/coin.mp3 -------------------------------------------------------------------------------- /assets/sound/coin.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "57634600-68ea-4c0c-9af6-9354747947f1", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/enemy_killed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/enemy_killed.mp3 -------------------------------------------------------------------------------- /assets/sound/enemy_killed.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "6a2d22ca-e6d1-4207-8452-2ba2e5a43495", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/gameover.mp3 -------------------------------------------------------------------------------- /assets/sound/gameover.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "c51dccd1-c078-4cf5-bb31-b989f06dcd33", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/high_score.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/high_score.mp3 -------------------------------------------------------------------------------- /assets/sound/high_score.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "d11a9bf2-adeb-46e6-b5a8-0b91ee6ed600", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/hit_block.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/hit_block.mp3 -------------------------------------------------------------------------------- /assets/sound/hit_block.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "500406f1-a2ba-4818-933d-875290f8b307", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/jump.mp3 -------------------------------------------------------------------------------- /assets/sound/jump.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "088e6e98-80f0-4f89-b6d7-365a2e94de2c", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/jump_water.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/jump_water.mp3 -------------------------------------------------------------------------------- /assets/sound/jump_water.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "7454cae6-85eb-4b12-a314-e5414f2ccdac", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/levelclear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/levelclear.mp3 -------------------------------------------------------------------------------- /assets/sound/levelclear.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "7a40f3ce-53f4-46a6-9f3d-4723563bd828", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/menu_music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/menu_music.mp3 -------------------------------------------------------------------------------- /assets/sound/menu_music.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "1502c3ed-c3d2-4eb4-abd8-d323f35723eb", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/mushroom_appear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/mushroom_appear.mp3 -------------------------------------------------------------------------------- /assets/sound/mushroom_appear.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "75628113-2d8e-412d-a887-be8239a04422", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/mushroom_catch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/mushroom_catch.mp3 -------------------------------------------------------------------------------- /assets/sound/mushroom_catch.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "536e4e1b-9de9-4eab-9b5f-e7989998d361", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/player_decrease.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/player_decrease.mp3 -------------------------------------------------------------------------------- /assets/sound/player_decrease.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "f30ccd4c-831d-4c77-8bd9-7ff618c77a0f", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/running_time.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/running_time.mp3 -------------------------------------------------------------------------------- /assets/sound/running_time.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "22dc8963-496c-4ff1-85e5-7a16f41ae35f", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/underground_bonus.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/underground_bonus.mp3 -------------------------------------------------------------------------------- /assets/sound/underground_bonus.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "36ecb757-f4ae-4f54-859b-d2b8b8641537", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sound/world1_music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sound/world1_music.mp3 -------------------------------------------------------------------------------- /assets/sound/world1_music.mp3.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "9e742b9a-5d98-42e3-8cf4-29369fef2399", 4 | "downloadMode": 0, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sprite.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "db379617-57b3-4b01-b054-08c7855596ca", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sprite/BPreplay.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/BPreplay.ttf -------------------------------------------------------------------------------- /assets/sprite/BPreplay.ttf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b29c5a34-2f4e-4da9-bda2-c059e7d61e89", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/sprite/atlas.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "8ce2e6ae-cafe-4b90-b47c-83acfd83ac7a", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/TI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/TI.png -------------------------------------------------------------------------------- /assets/sprite/atlas/TI.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "67ef70ea-cd2e-4896-9ce3-8ae4508a436f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "TI": { 9 | "ver": "1.0.3", 10 | "uuid": "80f8d923-4ae3-4c17-8c77-4d94b2c37d88", 11 | "rawTextureUuid": "67ef70ea-cd2e-4896-9ce3-8ae4508a436f", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 190, 20 | "height": 52, 21 | "rawWidth": 192, 22 | "rawHeight": 52, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/TIM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/TIM.png -------------------------------------------------------------------------------- /assets/sprite/atlas/TIM.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "50dbac2b-9006-460c-a1af-4e2142429ee8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "TIM": { 9 | "ver": "1.0.3", 10 | "uuid": "0eeae870-6c8c-4640-bdcc-8c7062237d15", 11 | "rawTextureUuid": "50dbac2b-9006-460c-a1af-4e2142429ee8", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 190, 20 | "height": 52, 21 | "rawWidth": 192, 22 | "rawHeight": 52, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/TR.png -------------------------------------------------------------------------------- /assets/sprite/atlas/TR.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "cfacf1d0-67b7-4e69-9545-ade00333d4de", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "TR": { 9 | "ver": "1.0.3", 10 | "uuid": "cb612a7c-8c56-4c9f-8eee-fdc59a2f6804", 11 | "rawTextureUuid": "cfacf1d0-67b7-4e69-9545-ade00333d4de", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 190, 20 | "height": 52, 21 | "rawWidth": 192, 22 | "rawHeight": 52, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/atlas.png -------------------------------------------------------------------------------- /assets/sprite/atlas/atlas.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "570f1242-03f7-48ff-8bb1-c4cc9b549537", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "atlas": { 9 | "ver": "1.0.3", 10 | "uuid": "c065d288-fc20-4d41-81be-82e015a0320e", 11 | "rawTextureUuid": "570f1242-03f7-48ff-8bb1-c4cc9b549537", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 817, 20 | "height": 512, 21 | "rawWidth": 817, 22 | "rawHeight": 512, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/bee.png -------------------------------------------------------------------------------- /assets/sprite/atlas/bee.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5665b409-2621-41d4-9df3-cfa85bdf9336", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bee": { 9 | "ver": "1.0.3", 10 | "uuid": "c9573469-8221-4e51-b7cb-b111435547f9", 11 | "rawTextureUuid": "5665b409-2621-41d4-9df3-cfa85bdf9336", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 87, 20 | "height": 498, 21 | "rawWidth": 87, 22 | "rawHeight": 498, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/beetle.png -------------------------------------------------------------------------------- /assets/sprite/atlas/beetle.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "77623e32-483e-4512-9589-a4b76d06a730", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "beetle": { 9 | "ver": "1.0.3", 10 | "uuid": "a71bfca4-e491-4f9c-9416-1d508b9dc474", 11 | "rawTextureUuid": "77623e32-483e-4512-9589-a4b76d06a730", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 123, 20 | "height": 144, 21 | "rawWidth": 123, 22 | "rawHeight": 144, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/bonusBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/bonusBlock.png -------------------------------------------------------------------------------- /assets/sprite/atlas/bonusblock.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3b2c3265-7642-48be-a900-1d8bfba870f6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bonusBlock": { 9 | "ver": "1.0.3", 10 | "uuid": "3fa91017-4852-4062-b045-98d9252ec4d3", 11 | "rawTextureUuid": "3b2c3265-7642-48be-a900-1d8bfba870f6", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 397, 20 | "height": 66, 21 | "rawWidth": 397, 22 | "rawHeight": 66, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/boss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/boss2.png -------------------------------------------------------------------------------- /assets/sprite/atlas/boss2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "46cf5760-76d0-4071-9602-8d46753d4123", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "boss2": { 9 | "ver": "1.0.3", 10 | "uuid": "bacafe97-4d90-4c72-86a7-80deb1791a55", 11 | "rawTextureUuid": "46cf5760-76d0-4071-9602-8d46753d4123", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 1236, 20 | "height": 109, 21 | "rawWidth": 1236, 22 | "rawHeight": 109, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/bstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/bstar.png -------------------------------------------------------------------------------- /assets/sprite/atlas/bstar.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1ed0825e-bf73-490e-b058-97628c71a15e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "bstar": { 9 | "ver": "1.0.3", 10 | "uuid": "65afa8b5-dd33-4379-9748-bbd0f901b336", 11 | "rawTextureUuid": "1ed0825e-bf73-490e-b058-97628c71a15e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 247, 20 | "height": 64, 21 | "rawWidth": 247, 22 | "rawHeight": 64, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/button_cancel_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/button_cancel_01.png -------------------------------------------------------------------------------- /assets/sprite/atlas/button_cancel_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/button_cancel_02.png -------------------------------------------------------------------------------- /assets/sprite/atlas/button_confirm_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/button_confirm_01.png -------------------------------------------------------------------------------- /assets/sprite/atlas/button_confirm_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/button_confirm_02.png -------------------------------------------------------------------------------- /assets/sprite/atlas/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/cactus.png -------------------------------------------------------------------------------- /assets/sprite/atlas/cactus.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "8cc3a89c-6ebf-418c-b255-f4a56b38bb91", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "cactus": { 9 | "ver": "1.0.3", 10 | "uuid": "58c13d9b-35d7-49b1-802d-ac259ee2d7d1", 11 | "rawTextureUuid": "8cc3a89c-6ebf-418c-b255-f4a56b38bb91", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 300, 20 | "height": 105, 21 | "rawWidth": 300, 22 | "rawHeight": 105, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/coin.png -------------------------------------------------------------------------------- /assets/sprite/atlas/coin.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c3b55e0c-7c5c-478a-b89b-f639e3d76374", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "coin": { 9 | "ver": "1.0.3", 10 | "uuid": "17c2c342-91f5-46f5-8e36-fb3b67cfd4fa", 11 | "rawTextureUuid": "c3b55e0c-7c5c-478a-b89b-f639e3d76374", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 49, 20 | "height": 142, 21 | "rawWidth": 49, 22 | "rawHeight": 142, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/crab.png -------------------------------------------------------------------------------- /assets/sprite/atlas/crab.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "6c49c0e4-0660-4c54-a4ee-df9835ca9aea", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "crab": { 9 | "ver": "1.0.3", 10 | "uuid": "059b4ad1-42ce-4261-8121-b79c49b84cd3", 11 | "rawTextureUuid": "6c49c0e4-0660-4c54-a4ee-df9835ca9aea", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 233, 20 | "height": 126, 21 | "rawWidth": 233, 22 | "rawHeight": 126, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/d_pad_0.png -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b7f50f59-9ba5-4140-b644-51700631221c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "d_pad_0": { 9 | "ver": "1.0.3", 10 | "uuid": "a8bf0739-d96b-4400-a7e6-64a21b5dae05", 11 | "rawTextureUuid": "b7f50f59-9ba5-4140-b644-51700631221c", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 95, 20 | "height": 98, 21 | "rawWidth": 95, 22 | "rawHeight": 98, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/d_pad_01.png -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_01.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d9c737b4-e6fd-4cbf-91e3-e7c73b87a322", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "d_pad_01": { 9 | "ver": "1.0.3", 10 | "uuid": "3437dd71-150b-419a-bfae-71b331db40c0", 11 | "rawTextureUuid": "d9c737b4-e6fd-4cbf-91e3-e7c73b87a322", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 98, 20 | "height": 98, 21 | "rawWidth": 98, 22 | "rawHeight": 98, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/d_pad_02.png -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_02.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5459e11a-39d3-4d26-9390-754627472f0e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "d_pad_02": { 9 | "ver": "1.0.3", 10 | "uuid": "ef230a45-9237-4677-9324-f0ce69536cb7", 11 | "rawTextureUuid": "5459e11a-39d3-4d26-9390-754627472f0e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 104, 20 | "height": 99, 21 | "rawWidth": 104, 22 | "rawHeight": 99, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/d_pad_03.png -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_03.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "21002628-494f-44eb-bd2a-f21387de4703", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "d_pad_03": { 9 | "ver": "1.0.3", 10 | "uuid": "7f4de6d2-3bac-4ca8-bc49-942a48704387", 11 | "rawTextureUuid": "21002628-494f-44eb-bd2a-f21387de4703", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 95, 20 | "height": 98, 21 | "rawWidth": 95, 22 | "rawHeight": 98, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/d_pad_1.png -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "fcf62de6-fb7c-4b64-8ab1-c4551c791623", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "d_pad_1": { 9 | "ver": "1.0.3", 10 | "uuid": "59377a59-9c1b-483c-90bf-148d6c216032", 11 | "rawTextureUuid": "fcf62de6-fb7c-4b64-8ab1-c4551c791623", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 98, 20 | "height": 98, 21 | "rawWidth": 98, 22 | "rawHeight": 98, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/d_pad_2.png -------------------------------------------------------------------------------- /assets/sprite/atlas/d_pad_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "66846d09-e216-4427-ab72-ba8a03fb307e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "d_pad_2": { 9 | "ver": "1.0.3", 10 | "uuid": "e13e8232-0452-4e7e-ae7a-b217007a5c0a", 11 | "rawTextureUuid": "66846d09-e216-4427-ab72-ba8a03fb307e", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 104, 20 | "height": 99, 21 | "rawWidth": 104, 22 | "rawHeight": 99, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/flower.png -------------------------------------------------------------------------------- /assets/sprite/atlas/flower.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0f5e7b3f-4d4e-4313-a4bf-57cb6becc17b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "flower": { 9 | "ver": "1.0.3", 10 | "uuid": "a90db0fb-c2a3-4dc7-a015-9ae5f84cc6b2", 11 | "rawTextureUuid": "0f5e7b3f-4d4e-4313-a4bf-57cb6becc17b", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 200, 20 | "height": 61, 21 | "rawWidth": 200, 22 | "rawHeight": 61, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/font.ttf -------------------------------------------------------------------------------- /assets/sprite/atlas/font.ttf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "955ba72d-46c7-4a10-9ca1-3fba5a11a74c", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/font111.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/font111.ttf -------------------------------------------------------------------------------- /assets/sprite/atlas/font111.ttf.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "25f28838-e5c5-4eef-8112-6168e6f588d0", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/gold-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/gold-bar.png -------------------------------------------------------------------------------- /assets/sprite/atlas/gold-bar.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d38b4cb4-906d-486c-aa23-65a4cc983961", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "gold-bar": { 9 | "ver": "1.0.3", 10 | "uuid": "3c575c2b-1bd6-4b6e-8213-b5c86a3d8aef", 11 | "rawTextureUuid": "d38b4cb4-906d-486c-aa23-65a4cc983961", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": -1, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 190, 20 | "height": 52, 21 | "rawWidth": 192, 22 | "rawHeight": 52, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/gold-bar.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/gold-bar.psd -------------------------------------------------------------------------------- /assets/sprite/atlas/gold-bar.psd.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f1138651-4950-4756-aefd-04b890c8165f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/ground.png -------------------------------------------------------------------------------- /assets/sprite/atlas/ground.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "753b6783-0cbd-4762-a87b-0e19b4a52b12", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "ground": { 9 | "ver": "1.0.3", 10 | "uuid": "24ece675-2995-42b0-889b-bfa03c8837a4", 11 | "rawTextureUuid": "753b6783-0cbd-4762-a87b-0e19b4a52b12", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 1152, 20 | "height": 256, 21 | "rawWidth": 1152, 22 | "rawHeight": 256, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/mushroom.png -------------------------------------------------------------------------------- /assets/sprite/atlas/mushroom.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7ef95f49-afca-420a-98d4-0f431e1c8fb7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "mushroom": { 9 | "ver": "1.0.3", 10 | "uuid": "586c7d41-f0f3-43fd-ab85-e08fc402d977", 11 | "rawTextureUuid": "7ef95f49-afca-420a-98d4-0f431e1c8fb7", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": 0, 17 | "trimX": 3, 18 | "trimY": 2, 19 | "width": 175, 20 | "height": 58, 21 | "rawWidth": 180, 22 | "rawHeight": 62, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/player.png -------------------------------------------------------------------------------- /assets/sprite/atlas/player.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "0b06ba15-ddc6-43b4-bb8e-f4bb485ccc51", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "player": { 9 | "ver": "1.0.3", 10 | "uuid": "864934be-78cb-46c5-8f46-83cb4da93c2d", 11 | "rawTextureUuid": "0b06ba15-ddc6-43b4-bb8e-f4bb485ccc51", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 507, 20 | "height": 878, 21 | "rawWidth": 507, 22 | "rawHeight": 878, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/pre_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/pre_button.png -------------------------------------------------------------------------------- /assets/sprite/atlas/pre_button.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "c5fc3eaa-1ea0-4e6b-b339-d7a3d5307100", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "pre_button": { 9 | "ver": "1.0.3", 10 | "uuid": "1c90299e-3729-452e-8dec-2f06bb0405a0", 11 | "rawTextureUuid": "c5fc3eaa-1ea0-4e6b-b339-d7a3d5307100", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 125, 20 | "height": 254, 21 | "rawWidth": 125, 22 | "rawHeight": 254, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/slider_button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/slider_button1.png -------------------------------------------------------------------------------- /assets/sprite/atlas/slider_button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/slider_button2.png -------------------------------------------------------------------------------- /assets/sprite/atlas/slider_button2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "affaf50c-0eca-4eed-83f2-382164b74683", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "slider_button2": { 9 | "ver": "1.0.3", 10 | "uuid": "a47652a7-93d0-49a2-a618-a358207c82be", 11 | "rawTextureUuid": "affaf50c-0eca-4eed-83f2-382164b74683", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 71, 20 | "height": 74, 21 | "rawWidth": 71, 22 | "rawHeight": 74, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/snail.png -------------------------------------------------------------------------------- /assets/sprite/atlas/snail.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "11ee3410-656e-4c63-89db-fff6023bfb38", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "snail": { 9 | "ver": "1.0.3", 10 | "uuid": "e17f4fa3-3ca9-4d66-8bd0-869609fd2301", 11 | "rawTextureUuid": "11ee3410-656e-4c63-89db-fff6023bfb38", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 301, 20 | "height": 55, 21 | "rawWidth": 301, 22 | "rawHeight": 55, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/sound_adjust_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/sound_adjust_screen.png -------------------------------------------------------------------------------- /assets/sprite/atlas/time-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/time-bar.png -------------------------------------------------------------------------------- /assets/sprite/atlas/time-bar.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "13cc248c-537e-4d01-9550-6f7de6c7d2f0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "time-bar": { 9 | "ver": "1.0.3", 10 | "uuid": "e9da56a0-65e7-4252-a781-c22cee334db0", 11 | "rawTextureUuid": "13cc248c-537e-4d01-9550-6f7de6c7d2f0", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 6, 16 | "offsetY": -4, 17 | "trimX": 44, 18 | "trimY": 13, 19 | "width": 116, 20 | "height": 34, 21 | "rawWidth": 192, 22 | "rawHeight": 52, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/atlas/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/atlas/time.png -------------------------------------------------------------------------------- /assets/sprite/atlas/time.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5e49d4ee-46e3-4d6e-8c79-39b9d4918d29", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "time": { 9 | "ver": "1.0.3", 10 | "uuid": "357c6f8d-e1a4-4631-9a57-2331a5cb30b5", 11 | "rawTextureUuid": "5e49d4ee-46e3-4d6e-8c79-39b9d4918d29", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 203, 20 | "height": 82, 21 | "rawWidth": 203, 22 | "rawHeight": 82, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/background.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "0fc7509d-027c-4810-84e1-1ce81450c01b", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sprite/background/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/background/background.png -------------------------------------------------------------------------------- /assets/sprite/background/background_desert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/background/background_desert1.png -------------------------------------------------------------------------------- /assets/sprite/background/background_desert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/background/background_desert2.png -------------------------------------------------------------------------------- /assets/sprite/background/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/background/loading_background.png -------------------------------------------------------------------------------- /assets/sprite/level_select.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "f250d7cc-c0c9-4494-b98e-de37a61a255d", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sprite/level_select/blank_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/level_select/blank_button.png -------------------------------------------------------------------------------- /assets/sprite/level_select/castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/level_select/castle.png -------------------------------------------------------------------------------- /assets/sprite/level_select/castle.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "e0573e7b-ce9a-4925-9035-04ab05e93401", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "castle": { 9 | "ver": "1.0.3", 10 | "uuid": "39cd916c-e7a5-4e62-b041-cd4741833c5e", 11 | "rawTextureUuid": "e0573e7b-ce9a-4925-9035-04ab05e93401", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -0.5, 17 | "trimX": 0, 18 | "trimY": 1, 19 | "width": 60, 20 | "height": 59, 21 | "rawWidth": 60, 22 | "rawHeight": 60, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/level_select/changearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/level_select/changearrow.png -------------------------------------------------------------------------------- /assets/sprite/level_select/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/level_select/stars.png -------------------------------------------------------------------------------- /assets/sprite/level_select/stars.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "b20525cf-b039-4a21-9d58-121cdd10bc51", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "stars": { 9 | "ver": "1.0.3", 10 | "uuid": "3fd35db2-7e61-4e1a-9b43-ad0df91f2023", 11 | "rawTextureUuid": "b20525cf-b039-4a21-9d58-121cdd10bc51", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 0, 18 | "trimY": 0, 19 | "width": 120, 20 | "height": 120, 21 | "rawWidth": 120, 22 | "rawHeight": 120, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/menu.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "b3c7e08f-b753-4922-b8f3-1e6e76bcf8a6", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/sprite/menu/menu_effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/menu/menu_effects.png -------------------------------------------------------------------------------- /assets/sprite/menu/menu_effects.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "7811f161-96ee-425e-9c80-6523dedc0e9d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "menu_effects": { 9 | "ver": "1.0.3", 10 | "uuid": "f6d340e1-883c-49cb-b9f9-c030a0072668", 11 | "rawTextureUuid": "7811f161-96ee-425e-9c80-6523dedc0e9d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": 0, 17 | "trimX": 14, 18 | "trimY": 0, 19 | "width": 164, 20 | "height": 192, 21 | "rawWidth": 192, 22 | "rawHeight": 192, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/menu/menu_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/menu/menu_exit.png -------------------------------------------------------------------------------- /assets/sprite/menu/menu_exit.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "5050176f-d498-4278-a186-29102953eb9d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "menu_exit": { 9 | "ver": "1.0.3", 10 | "uuid": "2c301800-9f7c-404f-a0ba-239a32b90680", 11 | "rawTextureUuid": "5050176f-d498-4278-a186-29102953eb9d", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0.5, 16 | "offsetY": -0.5, 17 | "trimX": 19, 18 | "trimY": 22, 19 | "width": 117, 20 | "height": 110, 21 | "rawWidth": 154, 22 | "rawHeight": 153, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/sprite/menu/menu_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/menu/menu_sound.png -------------------------------------------------------------------------------- /assets/sprite/menu/play_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstd521/RabbitGame/7d2e5239ce2ae46905fde9805a899e87a644a892/assets/sprite/menu/play_big.png -------------------------------------------------------------------------------- /assets/sprite/menu/play_big.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f6d5fc34-2a0c-495c-b002-32d01b266f51", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "subMetas": { 8 | "play_big": { 9 | "ver": "1.0.3", 10 | "uuid": "99520510-ac17-4242-9ef2-cf520325420e", 11 | "rawTextureUuid": "f6d5fc34-2a0c-495c-b002-32d01b266f51", 12 | "trimType": "auto", 13 | "trimThreshold": 1, 14 | "rotated": false, 15 | "offsetX": 0, 16 | "offsetY": -0.5, 17 | "trimX": 2, 18 | "trimY": 19, 19 | "width": 161, 20 | "height": 128, 21 | "rawWidth": 165, 22 | "rawHeight": 165, 23 | "borderTop": 0, 24 | "borderBottom": 0, 25 | "borderLeft": 0, 26 | "borderRight": 0, 27 | "subMetas": {} 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /assets/tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "e59ccf60-abe4-48d3-a226-63cbffdce353", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /assets/tmx/level01.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "33b99e69-3a0e-4b74-8a59-aeb0c5fbe031", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level02.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "d22da1ba-2dd7-4203-9d6d-8a8be8fbba35", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level03.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "87628131-f1c5-42a4-bad6-474604899b58", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level04.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "881c322b-cbf1-4df0-b1df-a3ef74ff60ec", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level05.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "d5886c8b-f121-44e4-b6e4-43596892f5ca", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level06.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "07d892aa-a131-4cc6-a572-9be5dc7a1d80", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level07.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "c5529581-a0b9-48df-8e3c-bcfe87474206", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level08.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "166bb34c-3ce2-4fe8-b773-6801bd584734", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level09.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "d2d8b8b7-a3e8-467d-a4a1-42318553191f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level10.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "1c3dce0f-3999-4384-b82e-dcee149af1ea", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level11.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "5bb6b8f0-6ad2-4b44-bd91-e302a6e8ffb0", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level12.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "125021cd-695d-4b72-940b-5332a55fa21c", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level13.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "89c2e971-17ed-401c-b3d1-4f4715c66842", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level14.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "149ee3a4-d80e-42b6-bd3c-6d77b49b1a84", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level15.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "ce56ab83-94ad-4c5a-9a93-b482f16db22a", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level16.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "06557cd7-9f2e-452e-acf1-4508744a2c37", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level17.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "e34c559f-35a8-4361-a4ee-863693317883", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level18.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "644c6da2-6028-4df4-a9bd-f44114124a93", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level19.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "3dc8b5f3-2b72-4645-a330-59804008ade4", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level20.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "5bb9bbb7-4ca4-4e93-97e4-0ea13026a4ff", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level21.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "7f3da233-98ab-4f32-922f-e23154d70e83", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level22.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "b9856bdf-1bc0-4a7b-8d7a-b9e93aee8066", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level23.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "09b38f7a-4989-48d3-bed0-126c75f40c7e", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level24.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "49f72de4-6025-4763-9f68-38879b057cf8", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level25.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "32f3b072-b81c-4c8a-811f-3056f883db6e", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level26.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "8955b9ba-a477-4102-aec0-6f4886aaccac", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level27.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "ebde4519-77c9-428f-86c3-dbe38718d6ef", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level28.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "a1ec748d-b96e-4628-b9d3-d729b8a37dbd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level29.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "1b742f05-2b27-4184-93ea-b0b8c3544050", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level30.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "b6d545b8-477f-4024-a335-470fe5ff60ee", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level31.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "ed7755d9-c7ff-413c-bf3e-86ae88965f10", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level32.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "e20579c8-e72b-4d48-909e-d8c5e18dd266", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level33.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "ec47805d-0a1d-4d7c-910b-1733484dfcc6", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level34.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "97fc7877-5de7-47b0-b5ef-7ca7658d2724", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level35.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "efa2ade0-422a-4a6a-ae18-eeeff1b27320", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level36.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "68d7a3ca-706a-4c5f-ad5d-34c5606cde6e", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level37.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "3c955a90-67ea-437a-acc3-0ba26a2b83cd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level38.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "670b449c-e49b-4521-9f7e-57fc9a30c3fe", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level39.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "bd043646-a1cb-41c4-a4d8-f39d4c9cfed8", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level40.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "c146612b-c926-4010-9671-4aa5d2b3a582", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level41.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "4c6a9fb7-9ac5-4bc9-a5ab-354df11a50c2", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level42.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "13a61bb2-a350-466c-a8f1-367d410cd235", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level43.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "88db16ea-f283-4251-ae34-cb99dbce2d3f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level44.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "c8fe3685-9a01-433d-929c-004619996495", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level45.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "0e29711e-72a2-4f7b-8ed2-4b49270a21be", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level46.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "f599a8a3-d4da-4e1e-8e0d-502863f49fca", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level47.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "fcebc3cc-f741-4903-843f-db56bdca4976", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level48.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "37a2c3a2-5bfe-4737-8448-b31ee5d16ccd", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level49.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "5bf3a1a2-00aa-4ba4-a350-b7a1e17b1726", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level50.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "0a3896fa-fa08-4f7c-9f23-e193a2e386af", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level51.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "b5864b85-82fd-48b8-985f-7990928bc74f", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level52.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "f1a99bb0-04b5-431a-8d79-02980ce5e7c7", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level53.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "694cd931-c60f-4e9f-bccb-751fb84d531b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level54.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "dbadef45-b1e9-4d44-86ff-83d2bec8df66", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level55.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "3832f3e2-0ff5-4ea4-9590-c006ace3442e", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level56.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "72402f6d-c21d-4f86-89c8-dbf85c59f5b1", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level57.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "0748e81c-bf92-401c-928e-45e84f6c830c", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level58.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "850f2699-16c3-4684-a707-ab23d8e7ab0d", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level59.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "541c6596-fdc4-4b5a-9efb-d7b8091c68d8", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level60.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "f4862276-eacc-4254-bd1e-8706c61a3c9b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level61.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "a17ab49d-6020-4deb-81f6-682994c2e661", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level62.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "42260361-aeb5-4819-8287-84dc0e2d5079", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level63.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "508f49f3-5376-47bb-9d9d-ba1971cccc64", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level64.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "844a9868-c963-4cac-95c2-f9d057aa0be8", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level65.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "6ade79bc-4e19-49af-afee-02c1e1043d5d", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level66.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "d8c0378b-0ae2-420f-b539-14fceb9d8c25", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level67.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "008328ec-768c-4a5a-8939-07667e83608c", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level68.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "3aa7b66f-db9a-47ed-8258-b7d7ebba39b3", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level69.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "12a60451-13f2-4b93-bbe2-e8f05401ca32", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level70.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "aa8a3c3c-261b-4141-940e-6c476a37c633", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level71.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "86be098e-aaf9-41cb-a27d-5d2c0a68c7aa", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level72.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "29ac3e19-4545-4b5b-a987-659516e76c6b", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level73.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "e33d853b-a526-4674-b2b3-de02f6ab26de", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level74.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "be3e9d9d-6ffa-4f48-9be4-7b38728a5062", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level75.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "313a3e1c-c852-4e2e-9d07-38df63aa9d16", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level76.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "9fb91352-62fc-402c-973a-78eff46c1358", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level77.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "4eb8860f-da58-4f29-a17b-3f2d170da68d", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level78.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "7a45a37a-a051-497b-8ad5-3bdda688ae94", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level79.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "966b7e76-0e11-4529-84f5-02a66ac5c737", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /assets/tmx/level80.tmx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.4", 3 | "uuid": "ddc82a2f-f8bf-427e-b2b8-abf42e8cda91", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs" 5 | }, 6 | "exclude": [ 7 | "node_modules", 8 | "library", 9 | "local", 10 | "settings", 11 | "temp" 12 | ] 13 | } -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos-creator-js", 3 | "packages": "packages" 4 | } -------------------------------------------------------------------------------- /settings/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "appKey": "", 3 | "appSecret": "", 4 | "excludeScenes": [], 5 | "includeAnySDK": false, 6 | "includeSdk": [ 7 | "anysdk" 8 | ], 9 | "inlineSpriteFrames": true, 10 | "mergeStartScene": false, 11 | "oauthLoginServer": "", 12 | "orientation": { 13 | "landscapeLeft": true, 14 | "landscapeRight": true, 15 | "portrait": false, 16 | "upsideDown": false 17 | }, 18 | "packageName": "org.cocos2d.Rabbit", 19 | "privateKey": "", 20 | "renderMode": "0", 21 | "startScene": "47eda8cb-b425-4d06-b362-48cc05e9ad27", 22 | "title": "Rabbit", 23 | "webOrientation": "landscape" 24 | } --------------------------------------------------------------------------------