├── .bowerrc ├── .eslintrc.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── blank ├── assets │ └── .gitkeep ├── index.html └── js │ └── game.js ├── bower.json ├── capture.js ├── games ├── 123 │ ├── assets │ │ ├── buttons.png │ │ └── timebar.png │ ├── index.html │ └── js │ │ └── game.js ├── 2048 │ ├── assets │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js ├── 10000000 │ ├── assets │ │ └── tiles.png │ ├── index.html │ └── js │ │ └── game.js ├── angry-birds-space │ ├── assets │ │ ├── bigplanet.png │ │ ├── crate.png │ │ └── planet.png │ ├── index.html │ └── js │ │ └── game.js ├── ascii-roguelike │ ├── index.html │ └── js │ │ └── game.js ├── boids-flocking │ ├── assets │ │ ├── boid.png │ │ └── target.png │ └── index.html ├── boids-steering │ ├── assets │ │ ├── boid.png │ │ └── target.png │ └── index.html ├── boom-dots │ ├── assets │ │ ├── enemy.png │ │ └── player.png │ ├── index.html │ └── js │ │ └── game.js ├── bouncing-menu │ ├── assets │ │ └── sprites │ │ │ ├── gametitle.png │ │ │ ├── gridedition.png │ │ │ ├── menubutton.png │ │ │ ├── playbutton.png │ │ │ ├── resetgame.png │ │ │ └── thankyou.png │ ├── index.html │ └── js │ │ └── game.js ├── box-jump │ ├── images │ │ ├── cube.png │ │ ├── line.png │ │ ├── pixel.png │ │ └── player.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── hit.wav │ │ ├── jump.wav │ │ └── music.wav ├── box2d │ ├── assets │ │ ├── crate.png │ │ └── ground.png │ ├── index.html │ └── js │ │ └── game.js ├── breakout │ ├── assets │ │ ├── background2.png │ │ ├── balle.png │ │ ├── brik3.png │ │ ├── canon.png │ │ ├── lazer.png │ │ ├── life.png │ │ ├── lines.png │ │ ├── paddle.png │ │ └── wall.png │ ├── index.html │ └── js │ │ └── game.js ├── bresenham-light │ ├── assets │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js ├── brick │ ├── index.html │ └── js │ │ └── game.js ├── bulletpool │ ├── assets │ │ ├── back.png │ │ ├── bullet1.png │ │ ├── bullet10.png │ │ ├── bullet11.png │ │ ├── bullet2.png │ │ ├── bullet3.png │ │ ├── bullet4.png │ │ ├── bullet5.png │ │ ├── bullet6.png │ │ ├── bullet7.png │ │ ├── bullet8.png │ │ ├── bullet9.png │ │ ├── fore.png │ │ ├── ship.png │ │ ├── shmupfont.png │ │ └── shmupfont.xml │ ├── index.html │ └── js │ │ └── game.js ├── car │ ├── assets │ │ ├── car.png │ │ ├── maze.json │ │ ├── maze.tmx │ │ └── tiles.png │ ├── index.html │ └── js │ │ └── game.js ├── character-selection │ ├── assets │ │ ├── fish.png │ │ └── transp.png │ ├── index.html │ └── js │ │ └── game.js ├── christmas-quest │ ├── assets │ │ ├── sounds │ │ │ └── music.mp3 │ │ └── sprites │ │ │ ├── background.png │ │ │ ├── blackfade.png │ │ │ ├── gamesubtitle.png │ │ │ ├── gametitle.png │ │ │ ├── loading.png │ │ │ ├── logo.png │ │ │ ├── snow_mask.png │ │ │ ├── snowflakes.png │ │ │ └── snowflakes_large.png │ ├── index.html │ └── js │ │ └── game.js ├── circle-path │ ├── assets │ │ ├── arm.png │ │ ├── ball.png │ │ └── target.png │ ├── index.html │ └── js │ │ └── game.js ├── clocks │ ├── assets │ │ └── sprites │ │ │ ├── ball.png │ │ │ ├── bigclock.png │ │ │ ├── bigclockface.png │ │ │ ├── bighand.png │ │ │ ├── loading.png │ │ │ ├── smallclock.png │ │ │ ├── smallclockface.png │ │ │ └── smallhand.png │ ├── index.html │ └── js │ │ └── game.js ├── connected │ ├── images │ │ ├── bar.png │ │ ├── dot.png │ │ ├── loading.png │ │ ├── loading2.png │ │ ├── progress.png │ │ ├── question.png │ │ ├── sound.png │ │ └── tuto.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── combo.wav │ │ ├── tap1.wav │ │ ├── tap2.wav │ │ └── tap3.wav ├── crack-alien-code │ ├── index.html │ ├── js │ │ └── game.js │ ├── right.mp3 │ ├── right.ogg │ ├── select.mp3 │ ├── select.ogg │ ├── soundicons.png │ ├── tiles.png │ ├── wrong.mp3 │ └── wrong.ogg ├── crazy-snake │ ├── images │ │ ├── bg.png │ │ ├── coin.png │ │ ├── loading.png │ │ ├── loading2.png │ │ ├── player.png │ │ └── sound.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── coin.wav │ │ ├── death.wav │ │ └── music.wav ├── cube-jump │ ├── assets │ │ └── platforms.png │ ├── index.html │ └── js │ │ └── game.js ├── dark-blue │ ├── images │ │ ├── coin.png │ │ ├── enemy.png │ │ ├── loading.png │ │ ├── loading2.png │ │ ├── logo2.png │ │ ├── player3.png │ │ ├── sound4.png │ │ ├── success2.png │ │ └── tiles.png │ ├── index.html │ ├── js │ │ └── game.js │ ├── levels │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ └── 5.json │ └── sounds │ │ ├── coin.wav │ │ ├── dead.wav │ │ ├── jump.wav │ │ ├── music.wav │ │ └── yeah.mp3 ├── dashy-panda │ ├── assets │ │ ├── ground.png │ │ ├── panda.png │ │ └── spike.png │ ├── index.html │ └── js │ │ └── game.js ├── demo.jpg ├── diamond-digger │ ├── assets │ │ ├── rock.png │ │ ├── tiles.png │ │ └── water.png │ ├── index.html │ └── js │ │ └── game.js ├── digger │ ├── assets │ │ ├── background_city.png │ │ ├── background_grass.png │ │ ├── background_hill1.png │ │ ├── background_hill2.png │ │ ├── background_sky.png │ │ ├── character.png │ │ ├── gold.png │ │ ├── grass.png │ │ ├── ground.png │ │ ├── loading │ │ │ └── loading.png │ │ ├── logo.png │ │ ├── rock.png │ │ └── shop.png │ ├── index.html │ └── js │ │ ├── lib │ │ ├── mt.data.js │ │ └── mt.helper.js │ │ ├── main.js │ │ └── state │ │ ├── boot.js │ │ ├── character.js │ │ ├── load.js │ │ ├── menu.js │ │ └── play.js ├── doodle-jump │ ├── assets │ │ ├── background.png │ │ ├── clouds.png │ │ ├── dude.png │ │ ├── ice-platform.png │ │ ├── platform.png │ │ └── trees.png │ ├── index.html │ └── js │ │ └── game.js ├── down-the-mountain │ ├── assets │ │ ├── hexagon.png │ │ └── marker.png │ ├── index.html │ └── js │ │ └── game.js ├── draggable-and-scrollable-with-inertia │ ├── assets │ │ └── map.png │ ├── index.html │ └── js │ │ └── game.js ├── drop-wizard │ ├── assets │ │ ├── bullet.png │ │ ├── enemy.png │ │ ├── ground.png │ │ ├── platform120.png │ │ ├── platform180.png │ │ └── player.png │ ├── index.html │ └── js │ │ └── game.js ├── dungeon-raid │ ├── assets │ │ └── sprites │ │ │ ├── arrows.png │ │ │ └── tiles.png │ ├── index.html │ └── js │ │ └── game.js ├── easystarjs │ ├── assets │ │ └── .gitkeep │ ├── index.html │ └── js │ │ └── game.js ├── endless-scale │ ├── assets │ │ ├── ninja.png │ │ ├── pole.png │ │ └── powerbar.png │ ├── index.html │ └── js │ │ └── game.js ├── fill-the-holes │ ├── images │ │ ├── arrows.png │ │ ├── box.png │ │ ├── hole.png │ │ ├── loading.png │ │ ├── loading2.png │ │ └── wall.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── hit.wav │ │ ├── music.wav │ │ └── next.wav ├── first-game │ ├── assets │ │ ├── baddie.png │ │ ├── diamond.png │ │ ├── dude.png │ │ ├── firstaid.png │ │ ├── platform.png │ │ ├── sky.png │ │ └── star.png │ ├── index.html │ └── js │ │ └── game.js ├── flappy-bird-2 │ ├── assets │ │ ├── bird.png │ │ ├── jump.wav │ │ └── pipe.png │ ├── index.html │ └── js │ │ └── game.js ├── flappy-bird-reborn │ ├── assets │ │ ├── background.png │ │ ├── bird.png │ │ ├── flap.wav │ │ ├── fonts │ │ │ └── flappyfont │ │ │ │ ├── flappyfont.fnt │ │ │ │ └── flappyfont.png │ │ ├── gameover.png │ │ ├── get-ready.png │ │ ├── ground-hit.wav │ │ ├── ground.png │ │ ├── instructions.png │ │ ├── medals.png │ │ ├── ouch.wav │ │ ├── particle.png │ │ ├── pipe-hit.wav │ │ ├── pipes.png │ │ ├── preloader.gif │ │ ├── score.wav │ │ ├── scoreboard.png │ │ ├── start-button.png │ │ └── title.png │ ├── index.html │ └── js │ │ └── game.js ├── flappy-bird │ ├── assets │ │ ├── imgs │ │ │ ├── background-texture.png │ │ │ ├── player.png │ │ │ └── wall.png │ │ └── snds │ │ │ ├── hurt.wav │ │ │ ├── jet.wav │ │ │ └── score.wav │ ├── index.html │ └── js │ │ └── game.js ├── flipping-legend │ ├── assets │ │ ├── hero.png │ │ ├── hole.png │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js ├── flood-fill │ ├── assets │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js ├── fruit-ninja-2 │ ├── index.html │ └── js │ │ └── game.js ├── fruit-ninja │ ├── index.html │ └── js │ │ └── game.js ├── games.js ├── goat-rider │ ├── assets │ │ ├── goat.png │ │ └── player.png │ ├── index.html │ └── js │ │ └── game.js ├── guessnext │ ├── assets │ │ ├── cards0.png │ │ ├── cards1.png │ │ ├── cards2.png │ │ ├── cards3.png │ │ ├── cards4.png │ │ ├── cards5.png │ │ ├── cards6.png │ │ ├── cards7.png │ │ ├── cards8.png │ │ ├── cards9.png │ │ ├── info.png │ │ └── swipe.png │ ├── index.html │ └── js │ │ └── game.js ├── gyro.js │ ├── assets │ │ └── player.png │ ├── index.html │ └── js │ │ └── game.js ├── hexagonal-tiles │ ├── assets │ │ ├── hexagon.png │ │ └── marker.png │ ├── index.html │ └── js │ │ ├── game1.js │ │ └── game2.js ├── hi-low │ ├── assets │ │ ├── gameover.png │ │ ├── gametitle.png │ │ ├── higher.png │ │ ├── loading.png │ │ ├── lower.png │ │ ├── numbers.png │ │ └── play.png │ ├── index.html │ └── js │ │ └── game.js ├── horror-ray-casting │ ├── assets │ │ └── .gitkeep │ ├── index.html │ └── js │ │ └── game.js ├── horror │ ├── assets │ │ ├── floor.png │ │ ├── player.png │ │ └── walls.png │ ├── index.html │ └── js │ │ └── game.js ├── i-hate-rabbits │ ├── images │ │ ├── bad.png │ │ ├── circle.png │ │ ├── facebook.png │ │ ├── loading-border.png │ │ ├── loading.png │ │ ├── rabbit2.png │ │ └── tweet.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── a.mp3 │ │ ├── e.mp3 │ │ ├── haho.mp3 │ │ ├── i.mp3 │ │ ├── music.wav │ │ ├── o.mp3 │ │ ├── u.mp3 │ │ └── yeah.mp3 ├── index.html ├── infinite-runner │ ├── assets │ │ ├── bg.png │ │ ├── midground.png │ │ └── rock.png │ ├── index.html │ └── js │ │ ├── game.js │ │ └── images.js ├── iromeku │ ├── assets │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js ├── level-selection-with-locked-and-stars │ ├── assets │ │ ├── game.png │ │ ├── level_arrows.png │ │ └── levels.png │ ├── index.html │ └── js │ │ ├── game.js │ │ ├── levelselect.js │ │ ├── loading.js │ │ └── playlevel.js ├── level-selection │ ├── assets │ │ ├── levelthumb.png │ │ └── transp.png │ ├── index.html │ └── js │ │ └── game.js ├── lighting │ ├── assets │ │ ├── bg.jpg │ │ ├── black.png │ │ └── player.jpg │ ├── index.html │ └── js │ │ └── game.js ├── magick │ ├── assets │ │ ├── block.png │ │ ├── map.json │ │ ├── player.png │ │ └── rock.png │ ├── index.html │ └── js │ │ └── game.js ├── man-vs-penguins │ ├── images │ │ ├── bg.png │ │ ├── brick.png │ │ ├── coin.png │ │ ├── enemy.png │ │ ├── loading.png │ │ └── player.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── coin.wav │ │ ├── dead.wav │ │ ├── jump.wav │ │ ├── kill.wav │ │ └── music.wav ├── mass-attack │ ├── assets │ │ ├── balance.png │ │ └── ball.png │ ├── index.html │ └── js │ │ └── game.js ├── maze │ ├── assets │ │ └── .gitkeep │ ├── index.html │ └── js │ │ └── game.js ├── memdot │ ├── assets │ │ ├── background.png │ │ ├── circles.png │ │ └── timer.png │ ├── index.html │ └── js │ │ └── game.js ├── mike-dangers │ ├── assets │ │ ├── cloud.png │ │ ├── diamond.png │ │ ├── diamondparticle.png │ │ ├── floor.png │ │ ├── font.fnt │ │ ├── font.png │ │ ├── ground.png │ │ ├── hero.png │ │ ├── ladder.png │ │ ├── spike.png │ │ └── tap.png │ ├── index.html │ └── js │ │ └── game.js ├── mikey-hooks │ ├── assets │ │ └── .gitkeep │ ├── index.html │ └── js │ │ └── game.js ├── monster-wants-candy │ ├── assets │ │ ├── background.png │ │ ├── button-pause.png │ │ ├── button-start.png │ │ ├── candy.png │ │ ├── floor.png │ │ ├── gameover.png │ │ ├── loading-bar.png │ │ ├── monster-cover.png │ │ ├── monster-idle.png │ │ ├── score-bg.png │ │ └── title.png │ ├── index.html │ └── js │ │ ├── boot.js │ │ ├── game.js │ │ ├── main-menu.js │ │ └── preloader.js ├── one-plus-two-equal-three │ ├── assets │ │ ├── buttonmask.png │ │ ├── buttons.png │ │ └── timebar.png │ ├── index.html │ └── js │ │ └── game.js ├── one-tap-rpg │ ├── assets │ │ ├── coin.png │ │ ├── hero.png │ │ └── skull.png │ ├── index.html │ └── js │ │ └── game.js ├── orbital-debris │ ├── assets │ │ ├── art │ │ │ ├── astronaut.png │ │ │ ├── bg.png │ │ │ ├── btnMute.png │ │ │ ├── btnPlay.png │ │ │ ├── btnPlayAgain.png │ │ │ ├── burnParticles.png │ │ │ ├── frame.png │ │ │ ├── junk1.png │ │ │ ├── junk2.png │ │ │ ├── junk3.png │ │ │ ├── logo.png │ │ │ ├── pickupShield.png │ │ │ ├── pickupSlow.png │ │ │ ├── pickupSpeed.png │ │ │ ├── powerupShield.png │ │ │ ├── powerupSpeed.png │ │ │ ├── satellite1.png │ │ │ ├── satellite1B.png │ │ │ ├── satellite2.png │ │ │ ├── satellite2B.png │ │ │ ├── station.png │ │ │ ├── stationFire.png │ │ │ └── youCallout.png │ │ └── audio │ │ │ ├── dreamculture.mp3 │ │ │ └── dreamculture.ogg │ ├── index.html │ └── js │ │ └── game.js ├── pacman-2 │ ├── assets │ │ ├── barrier.png │ │ ├── dot.png │ │ ├── ghosts32.png │ │ ├── pacman-map.json │ │ ├── pacman-tiles.png │ │ ├── pacman.png │ │ └── pill16.png │ ├── index.html │ └── js │ │ ├── game.js │ │ ├── ghost.js │ │ └── pacman.js ├── pacman │ ├── assets │ │ ├── dot.png │ │ ├── pacman-map.json │ │ ├── pacman-map.tmx │ │ ├── pacman-tiles.png │ │ └── pacman.png │ ├── index.html │ └── js │ │ └── game.js ├── particle-storm │ ├── assets │ │ ├── .gitkeep │ │ ├── cloud.png │ │ ├── phaser.png │ │ ├── sky10.png │ │ └── star.png │ ├── index.html │ └── js │ │ └── game.js ├── particle-to-sprite │ ├── assets │ │ └── fireblob.png │ ├── index.html │ └── js │ │ └── game.js ├── paths-aliens │ ├── assets │ │ ├── arrow.png │ │ ├── shmupfont.png │ │ ├── shmupfont.xml │ │ └── ufo.png │ └── index.html ├── paths-face │ ├── assets │ │ ├── arrow.png │ │ ├── shmupfont.png │ │ ├── shmupfont.xml │ │ └── ufo.png │ └── index.html ├── paths-paths │ ├── assets │ │ ├── arrow.png │ │ ├── shmupfont.png │ │ ├── shmupfont.xml │ │ └── ufo.png │ └── index.html ├── perfect-square │ ├── assets │ │ ├── base.png │ │ ├── font.fnt │ │ ├── font.png │ │ ├── square.png │ │ └── top.png │ ├── index.html │ └── js │ │ └── game.js ├── phshare │ ├── index.html │ └── js │ │ └── game.js ├── pixel-war │ ├── images │ │ ├── bg.png │ │ ├── bonus.png │ │ ├── bullet.png │ │ ├── enemy.png │ │ ├── fire.png │ │ ├── pixel.png │ │ └── player.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── bonus.wav │ │ ├── dead.wav │ │ ├── exp.wav │ │ ├── fire.wav │ │ └── hit.wav ├── platformer-2 │ ├── assets │ │ ├── cloud-platform.png │ │ ├── clouds-h.png │ │ ├── dude.png │ │ ├── platform.png │ │ └── trees-h.png │ ├── index.html │ └── js │ │ └── game.js ├── platformer │ ├── assets │ │ ├── baddie.png │ │ ├── diamond.png │ │ ├── dude.png │ │ ├── firstaid.png │ │ ├── platform.png │ │ ├── sky.png │ │ └── star.png │ ├── index.html │ └── js │ │ └── game.js ├── pong │ ├── assets │ │ ├── ball.png │ │ ├── ballBounce.m4a │ │ ├── ballBounce.ogg │ │ ├── ballHit.m4a │ │ ├── ballHit.ogg │ │ ├── ballMissed.m4a │ │ ├── ballMissed.ogg │ │ └── paddle.png │ ├── index.html │ └── js │ │ └── game.js ├── pop-the-lock │ ├── assets │ │ ├── ball.png │ │ ├── bar.png │ │ └── ring.png │ ├── index.html │ └── js │ │ └── game.js ├── princess-quest │ ├── images │ │ ├── cloud.png │ │ ├── ground.png │ │ ├── heart.png │ │ ├── line.png │ │ ├── loading.png │ │ ├── loading2.png │ │ ├── mute.png │ │ ├── platform.png │ │ ├── princess.png │ │ ├── princess_zoom.png │ │ └── spike.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── dead.wav │ │ ├── heart.wav │ │ ├── hit.wav │ │ ├── jump.wav │ │ └── music.wav ├── radical │ ├── assets │ │ ├── barrier.png │ │ ├── ship.png │ │ └── verticalbarrier.png │ ├── index.html │ └── js │ │ └── game.js ├── revenge │ ├── assets │ │ └── sprites │ │ │ ├── particle.png │ │ │ └── spaceship.png │ ├── index.html │ └── js │ │ └── game.js ├── rise-above │ ├── assets │ │ ├── fonts │ │ │ ├── font.fnt │ │ │ └── font.png │ │ ├── sounds │ │ │ ├── bgmusic.mp3 │ │ │ ├── bgmusic.ogg │ │ │ ├── explosion.mp3 │ │ │ └── explosion.ogg │ │ └── sprites │ │ │ ├── backsplash.png │ │ │ ├── barrier.png │ │ │ ├── playbutton.png │ │ │ ├── separator.png │ │ │ ├── ship.png │ │ │ ├── smoke.png │ │ │ ├── title.png │ │ │ ├── tunnelbg.png │ │ │ └── wall.png │ ├── index.html │ └── js │ │ └── game.js ├── run │ ├── assets │ │ ├── enemy1.png │ │ ├── enemy2.png │ │ ├── hit.wav │ │ └── player.png │ ├── index.html │ └── js │ │ └── game.js ├── rush-hour │ ├── assets │ │ ├── car.png │ │ ├── field.png │ │ └── truck.png │ ├── index.html │ └── js │ │ └── game.js ├── samegame │ ├── assets │ │ └── sprites │ │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js ├── santa-on-the-run │ ├── assets │ │ ├── drivin-home-low.mp3 │ │ ├── game-logo.png │ │ ├── game-over.png │ │ ├── ground.png │ │ ├── ho-ho-ho.mp3 │ │ ├── instructions.png │ │ ├── jump-sound.mp3 │ │ ├── play-btn.png │ │ ├── restart-btn.png │ │ ├── santa-running.png │ │ ├── snow-bg.png │ │ ├── snowflake.png │ │ └── start-btn.png │ ├── index.html │ └── js │ │ └── game.js ├── save-the-city │ ├── images │ │ ├── bomb.png │ │ ├── city.png │ │ ├── explosion.png │ │ ├── loading.png │ │ ├── loading2.png │ │ ├── pixel.png │ │ └── restart.png │ ├── index.html │ ├── js │ │ └── game.js │ └── sounds │ │ ├── exp.wav │ │ ├── fire.wav │ │ └── hit.wav ├── screenshake │ ├── index.html │ └── js │ │ ├── game1.js │ │ └── game2.js ├── sea-life-vs-mines │ ├── assets │ │ └── sprites │ │ │ ├── background.png │ │ │ ├── blackfade.png │ │ │ ├── bubble.png │ │ │ ├── gametitle_mines.png │ │ │ ├── gametitle_sealife.png │ │ │ ├── gametitle_vs.png │ │ │ ├── loading.png │ │ │ ├── logo.png │ │ │ └── playbutton.png │ ├── index.html │ └── js │ │ └── game.js ├── shootout │ ├── assets │ │ ├── casing.mp3 │ │ ├── draw.png │ │ ├── fire.mp3 │ │ ├── font.png │ │ ├── font.xml │ │ ├── lose.png │ │ ├── photonstorm.png │ │ ├── preload.png │ │ ├── reload.mp3 │ │ ├── splat.mp3 │ │ ├── standoff.png │ │ ├── walk.mp3 │ │ └── win.png │ ├── index.html │ └── js │ │ └── game.js ├── sokoban-responsive │ ├── assets │ │ └── tiles.png │ ├── index.html │ └── js │ │ └── game.js ├── sokoban-swipe │ ├── assets │ │ └── tiles.png │ ├── index.html │ └── js │ │ └── game.js ├── space-hipster │ ├── assets │ │ ├── imgs │ │ │ ├── enemy.png │ │ │ ├── logo.png │ │ │ ├── player-particle.png │ │ │ ├── player.png │ │ │ ├── power.png │ │ │ ├── preloader-bar.png │ │ │ ├── rock.png │ │ │ └── space.png │ │ └── snds │ │ │ ├── collect.ogg │ │ │ └── explosion.ogg │ ├── index.html │ └── js │ │ └── game.js ├── space-is-key │ ├── assets │ │ ├── spike.png │ │ └── square.png │ ├── index.html │ └── js │ │ └── game.js ├── spellfall │ ├── assets │ │ └── tiles.png │ ├── index.html │ └── js │ │ └── game.js ├── spin-wheel │ ├── assets │ │ ├── pin.png │ │ └── wheel.png │ ├── index.html │ └── js │ │ └── game.js ├── splashscreen │ ├── assets │ │ ├── splash1.jpg │ │ ├── splash2.jpg │ │ ├── splash3.jpg │ │ ├── splash4.jpg │ │ └── splash5.jpg │ ├── index.html │ └── js │ │ └── game.js ├── spring-ninja-double-jump │ ├── assets │ │ ├── ninja.png │ │ ├── pole.png │ │ └── powerbar.png │ ├── index.html │ └── js │ │ └── game.js ├── spring-ninja │ ├── assets │ │ ├── ninja.png │ │ ├── pole.png │ │ └── powerbar.png │ ├── index.html │ └── js │ │ └── game.js ├── square-one │ ├── assets │ │ └── square.png │ ├── index.html │ └── js │ │ └── game.js ├── state-transition-plugin │ ├── assets │ │ ├── button_sprite_sheet.png │ │ ├── element_blue.png │ │ ├── element_red.png │ │ ├── intro_of_dragons.mp3 │ │ └── preloader.png │ ├── index.html │ └── js │ │ └── game.js ├── straight-rush │ ├── assets │ │ ├── arrow.png │ │ ├── ball.png │ │ ├── coin.png │ │ └── deadly.png │ ├── index.html │ └── js │ │ └── game.js ├── string-avoider-2 │ ├── assets │ │ └── maze.png │ ├── index.html │ └── js │ │ └── game.js ├── string-avoider │ ├── assets │ │ └── maze.png │ ├── index.html │ └── js │ │ └── game.js ├── super-coin-box │ ├── assets │ │ ├── fonts │ │ │ └── ARCADECLASSIC.TTF │ │ ├── images │ │ │ ├── controls-sprites.json │ │ │ ├── controls-spritesheet.png │ │ │ ├── favicon.ico │ │ │ ├── game-sprites.json │ │ │ ├── game-spritesheet.png │ │ │ ├── map.json │ │ │ ├── progressBar.png │ │ │ └── tileset.png │ │ └── sounds │ │ │ ├── coin.mp3 │ │ │ ├── coin.ogg │ │ │ ├── dead.mp3 │ │ │ ├── dead.ogg │ │ │ ├── intro.mp3 │ │ │ ├── intro.ogg │ │ │ ├── jump.mp3 │ │ │ ├── jump.ogg │ │ │ ├── kill_the_enemy.mp3 │ │ │ └── kill_the_enemy.ogg │ ├── index.html │ └── js │ │ ├── boot.js │ │ ├── game.js │ │ ├── gameOver.js │ │ ├── levelsManager.js │ │ ├── load.js │ │ ├── main.js │ │ └── menu.js ├── tank │ ├── assets │ │ ├── background.png │ │ ├── bullet.png │ │ ├── flame.png │ │ ├── land.png │ │ ├── tank.png │ │ ├── target.png │ │ └── turret.png │ ├── index.html │ └── js │ │ └── game.js ├── the-next-arrow │ ├── assets │ │ ├── map.json │ │ └── tiles.png │ ├── index.html │ └── js │ │ └── game.js ├── the-three-hearths │ ├── images │ │ ├── dead.png │ │ ├── door.png │ │ ├── enemy.png │ │ ├── heart.png │ │ ├── key.png │ │ ├── loading.png │ │ ├── loading2.png │ │ ├── menu.png │ │ ├── player.png │ │ ├── sound.png │ │ └── tiles4.png │ ├── index.html │ ├── js │ │ └── game.js │ ├── levels │ │ └── map.json │ └── sounds │ │ ├── dead.wav │ │ ├── heart.wav │ │ ├── key.wav │ │ └── music.wav ├── totem-destroyer │ ├── assets │ │ ├── 1x1_destroy.png │ │ ├── 2x1_solid.png │ │ ├── 3x1_destroy.png │ │ ├── 4x1_destroy.png │ │ ├── 4x2_solid.png │ │ ├── grass.png │ │ ├── sensor.png │ │ └── totem.png │ ├── index.html │ └── js │ │ └── game.js ├── trick-shot │ ├── assets │ │ └── ball.png │ ├── index.html │ └── js │ │ └── game.js ├── twin-spin │ ├── assets │ │ ├── arm.png │ │ ├── firstball.png │ │ └── secondball.png │ ├── index.html │ └── js │ │ └── game.js ├── two-cars │ ├── assets │ │ ├── car.png │ │ ├── obstacle.png │ │ ├── road.png │ │ └── target.png │ ├── index.html │ └── js │ │ └── game.js ├── wall-jump │ ├── assets │ │ ├── hero.png │ │ ├── level.json │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js ├── webfont │ ├── assets │ │ └── Lobster-Regular.ttf │ ├── index.html │ └── js │ │ └── game.js ├── yeah-bunny │ ├── assets │ │ ├── hero.png │ │ ├── level.json │ │ └── tile.png │ ├── index.html │ └── js │ │ └── game.js └── zhed │ ├── assets │ └── tiles.png │ ├── index.html │ └── js │ └── game.js ├── gulpfile.js ├── index.html ├── package.json ├── plugins ├── ScreenShake.js ├── ScreenShake.min.js ├── box2d-plugin-full.js ├── easystar-0.2.1.min.js ├── gyro.min.js ├── particle-storm.js ├── phaser-debug.min.js ├── phaser-inspector.min.js ├── phaser-state-transition-plugin.js ├── phaser-state-transition-plugin.min.js ├── phlog.js ├── phshare.js └── visibility_polygon_dev.js └── screenshots ├── .gitkeep ├── 10000000.jpg ├── 120.jpg ├── 123.jpg ├── 2048.jpg ├── angry-birds-space.jpg ├── ascii-roguelike.jpg ├── boids-flocking.jpg ├── boids-steering.jpg ├── boom-dots.jpg ├── bouncing-menu.jpg ├── box-jump.jpg ├── box2d.jpg ├── breakout.jpg ├── bresenham-light.jpg ├── brick.jpg ├── bulletpool.jpg ├── car.jpg ├── character-selection.jpg ├── christmas-quest.jpg ├── circle-path.jpg ├── clocks.jpg ├── connected.jpg ├── crack-alien-code.jpg ├── crazy-snake.jpg ├── cube-jump.jpg ├── dark-blue.jpg ├── dashy-panda.jpg ├── diamond-digger.jpg ├── digger.jpg ├── doodle-jump.jpg ├── down-the-mountain.jpg ├── draggable-and-scrollable-with-inertia.jpg ├── drop-wizard.jpg ├── dungeon-raid.jpg ├── easystarjs.jpg ├── endless-scale.jpg ├── fill-the-holes.jpg ├── first-game.jpg ├── flappy-bird-2.jpg ├── flappy-bird-reborn.jpg ├── flappy-bird.jpg ├── flipping-legend.jpg ├── flood-fill.jpg ├── fruit-ninja-2.jpg ├── fruit-ninja.jpg ├── goat-rider.jpg ├── guessnext.jpg ├── gyro.js.jpg ├── hexagonal-tiles.jpg ├── hi-low.jpg ├── horror-ray-casting.jpg ├── horror.jpg ├── i-hate-rabbits.jpg ├── infinite-runner.jpg ├── iromeku.jpg ├── level-selection-with-locked-and-stars.jpg ├── level-selection.jpg ├── lighting.jpg ├── magick.jpg ├── man-vs-penguins.jpg ├── mass-attack.jpg ├── maze.jpg ├── memdot.jpg ├── mike-dangers.jpg ├── mikey-hooks.jpg ├── monster-wants-candy.jpg ├── one-plus-two-equal-three.jpg ├── one-tap-rpg.jpg ├── orbital-debris.jpg ├── pacman-2.jpg ├── pacman.jpg ├── particle-storm.jpg ├── particle-to-sprite.jpg ├── paths-aliens.jpg ├── paths-face.jpg ├── paths-paths.jpg ├── perfect-square.jpg ├── phshare.jpg ├── pixel-war.jpg ├── platformer-2.jpg ├── platformer.jpg ├── pong.jpg ├── pop-the-lock.jpg ├── princess-quest.jpg ├── radical.jpg ├── revenge.jpg ├── rise-above.jpg ├── run.jpg ├── rush-hour.jpg ├── samegame.jpg ├── santa-on-the-run.jpg ├── save-the-city.jpg ├── screenshake.jpg ├── sea-life-vs-mines.jpg ├── shootout.jpg ├── sokoban-responsive.jpg ├── sokoban-swipe.jpg ├── space-hipster.jpg ├── space-is-key.jpg ├── spellfall.jpg ├── spin-wheel.jpg ├── splashscreen.jpg ├── spring-ninja-double-jump.jpg ├── spring-ninja.jpg ├── square-one.jpg ├── state-transition-plugin.jpg ├── straight-rush.jpg ├── string-avoider-2.jpg ├── string-avoider.jpg ├── super-coin-box.jpg ├── tank.jpg ├── the-next-arrow.jpg ├── the-three-hearths.jpg ├── totem-destroyer.jpg ├── trick-shot.jpg ├── twin-spin.jpg ├── two-cars.jpg ├── wall-jump.jpg ├── webfont.jpg ├── yeah-bunny.jpg └── zhed.jpg /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components/", 3 | "analytics": false 4 | } 5 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: airbnb-base 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # dependency 2 | node_modules/ 3 | bower_components/ 4 | 5 | # backup 6 | bk 7 | bk* 8 | 9 | # lock 10 | yarn.lock 11 | package-lock.json 12 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "standard.enable": false 3 | } 4 | -------------------------------------------------------------------------------- /blank/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/blank/assets/.gitkeep -------------------------------------------------------------------------------- /blank/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | blank 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /blank/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/blank/js/game.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phaser-examples", 3 | "description": "Phaser Examples", 4 | "main": "", 5 | "authors": [ 6 | "Nathachai Thongniran" 7 | ], 8 | "keywords": [ 9 | "phaser", 10 | "examples" 11 | ], 12 | "moduleType": [ 13 | "node" 14 | ], 15 | "homepage": "", 16 | "ignore": [ 17 | "**/.*", 18 | "node_modules", 19 | "bower_components", 20 | "components", 21 | "test", 22 | "tests" 23 | ], 24 | "dependencies": { 25 | "moment": "^2.18.1", 26 | "phaser": "^2.6.2", 27 | "lodash": "^4.17.4", 28 | "faker": "^0.0.2", 29 | "jquery": "^3.2.1" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /games/10000000/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/10000000/assets/tiles.png -------------------------------------------------------------------------------- /games/123/assets/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/123/assets/buttons.png -------------------------------------------------------------------------------- /games/123/assets/timebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/123/assets/timebar.png -------------------------------------------------------------------------------- /games/123/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 123 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /games/2048/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/2048/assets/tile.png -------------------------------------------------------------------------------- /games/angry-birds-space/assets/bigplanet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/angry-birds-space/assets/bigplanet.png -------------------------------------------------------------------------------- /games/angry-birds-space/assets/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/angry-birds-space/assets/crate.png -------------------------------------------------------------------------------- /games/angry-birds-space/assets/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/angry-birds-space/assets/planet.png -------------------------------------------------------------------------------- /games/boids-flocking/assets/boid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/boids-flocking/assets/boid.png -------------------------------------------------------------------------------- /games/boids-flocking/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/boids-flocking/assets/target.png -------------------------------------------------------------------------------- /games/boids-steering/assets/boid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/boids-steering/assets/boid.png -------------------------------------------------------------------------------- /games/boids-steering/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/boids-steering/assets/target.png -------------------------------------------------------------------------------- /games/boom-dots/assets/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/boom-dots/assets/enemy.png -------------------------------------------------------------------------------- /games/boom-dots/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/boom-dots/assets/player.png -------------------------------------------------------------------------------- /games/bouncing-menu/assets/sprites/gametitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bouncing-menu/assets/sprites/gametitle.png -------------------------------------------------------------------------------- /games/bouncing-menu/assets/sprites/gridedition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bouncing-menu/assets/sprites/gridedition.png -------------------------------------------------------------------------------- /games/bouncing-menu/assets/sprites/menubutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bouncing-menu/assets/sprites/menubutton.png -------------------------------------------------------------------------------- /games/bouncing-menu/assets/sprites/playbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bouncing-menu/assets/sprites/playbutton.png -------------------------------------------------------------------------------- /games/bouncing-menu/assets/sprites/resetgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bouncing-menu/assets/sprites/resetgame.png -------------------------------------------------------------------------------- /games/bouncing-menu/assets/sprites/thankyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bouncing-menu/assets/sprites/thankyou.png -------------------------------------------------------------------------------- /games/box-jump/images/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box-jump/images/cube.png -------------------------------------------------------------------------------- /games/box-jump/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box-jump/images/line.png -------------------------------------------------------------------------------- /games/box-jump/images/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box-jump/images/pixel.png -------------------------------------------------------------------------------- /games/box-jump/images/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box-jump/images/player.png -------------------------------------------------------------------------------- /games/box-jump/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box-jump/sounds/hit.wav -------------------------------------------------------------------------------- /games/box-jump/sounds/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box-jump/sounds/jump.wav -------------------------------------------------------------------------------- /games/box-jump/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box-jump/sounds/music.wav -------------------------------------------------------------------------------- /games/box2d/assets/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box2d/assets/crate.png -------------------------------------------------------------------------------- /games/box2d/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/box2d/assets/ground.png -------------------------------------------------------------------------------- /games/breakout/assets/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/background2.png -------------------------------------------------------------------------------- /games/breakout/assets/balle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/balle.png -------------------------------------------------------------------------------- /games/breakout/assets/brik3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/brik3.png -------------------------------------------------------------------------------- /games/breakout/assets/canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/canon.png -------------------------------------------------------------------------------- /games/breakout/assets/lazer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/lazer.png -------------------------------------------------------------------------------- /games/breakout/assets/life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/life.png -------------------------------------------------------------------------------- /games/breakout/assets/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/lines.png -------------------------------------------------------------------------------- /games/breakout/assets/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/paddle.png -------------------------------------------------------------------------------- /games/breakout/assets/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/breakout/assets/wall.png -------------------------------------------------------------------------------- /games/bresenham-light/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bresenham-light/assets/tile.png -------------------------------------------------------------------------------- /games/bulletpool/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/back.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet1.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet10.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet11.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet2.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet3.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet4.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet5.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet6.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet7.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet8.png -------------------------------------------------------------------------------- /games/bulletpool/assets/bullet9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/bullet9.png -------------------------------------------------------------------------------- /games/bulletpool/assets/fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/fore.png -------------------------------------------------------------------------------- /games/bulletpool/assets/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/ship.png -------------------------------------------------------------------------------- /games/bulletpool/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/bulletpool/assets/shmupfont.png -------------------------------------------------------------------------------- /games/car/assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/car/assets/car.png -------------------------------------------------------------------------------- /games/car/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/car/assets/tiles.png -------------------------------------------------------------------------------- /games/character-selection/assets/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/character-selection/assets/fish.png -------------------------------------------------------------------------------- /games/character-selection/assets/transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/character-selection/assets/transp.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sounds/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sounds/music.mp3 -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/background.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/blackfade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/blackfade.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/gamesubtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/gamesubtitle.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/gametitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/gametitle.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/loading.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/logo.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/snow_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/snow_mask.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/snowflakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/snowflakes.png -------------------------------------------------------------------------------- /games/christmas-quest/assets/sprites/snowflakes_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/christmas-quest/assets/sprites/snowflakes_large.png -------------------------------------------------------------------------------- /games/circle-path/assets/arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/circle-path/assets/arm.png -------------------------------------------------------------------------------- /games/circle-path/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/circle-path/assets/ball.png -------------------------------------------------------------------------------- /games/circle-path/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/circle-path/assets/target.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/ball.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/bigclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/bigclock.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/bigclockface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/bigclockface.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/bighand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/bighand.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/loading.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/smallclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/smallclock.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/smallclockface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/smallclockface.png -------------------------------------------------------------------------------- /games/clocks/assets/sprites/smallhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/clocks/assets/sprites/smallhand.png -------------------------------------------------------------------------------- /games/connected/images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/bar.png -------------------------------------------------------------------------------- /games/connected/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/dot.png -------------------------------------------------------------------------------- /games/connected/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/loading.png -------------------------------------------------------------------------------- /games/connected/images/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/loading2.png -------------------------------------------------------------------------------- /games/connected/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/progress.png -------------------------------------------------------------------------------- /games/connected/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/question.png -------------------------------------------------------------------------------- /games/connected/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/sound.png -------------------------------------------------------------------------------- /games/connected/images/tuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/images/tuto.png -------------------------------------------------------------------------------- /games/connected/sounds/combo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/sounds/combo.wav -------------------------------------------------------------------------------- /games/connected/sounds/tap1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/sounds/tap1.wav -------------------------------------------------------------------------------- /games/connected/sounds/tap2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/sounds/tap2.wav -------------------------------------------------------------------------------- /games/connected/sounds/tap3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/connected/sounds/tap3.wav -------------------------------------------------------------------------------- /games/crack-alien-code/right.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/right.mp3 -------------------------------------------------------------------------------- /games/crack-alien-code/right.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/right.ogg -------------------------------------------------------------------------------- /games/crack-alien-code/select.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/select.mp3 -------------------------------------------------------------------------------- /games/crack-alien-code/select.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/select.ogg -------------------------------------------------------------------------------- /games/crack-alien-code/soundicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/soundicons.png -------------------------------------------------------------------------------- /games/crack-alien-code/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/tiles.png -------------------------------------------------------------------------------- /games/crack-alien-code/wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/wrong.mp3 -------------------------------------------------------------------------------- /games/crack-alien-code/wrong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crack-alien-code/wrong.ogg -------------------------------------------------------------------------------- /games/crazy-snake/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/images/bg.png -------------------------------------------------------------------------------- /games/crazy-snake/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/images/coin.png -------------------------------------------------------------------------------- /games/crazy-snake/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/images/loading.png -------------------------------------------------------------------------------- /games/crazy-snake/images/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/images/loading2.png -------------------------------------------------------------------------------- /games/crazy-snake/images/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/images/player.png -------------------------------------------------------------------------------- /games/crazy-snake/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/images/sound.png -------------------------------------------------------------------------------- /games/crazy-snake/sounds/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/sounds/coin.wav -------------------------------------------------------------------------------- /games/crazy-snake/sounds/death.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/sounds/death.wav -------------------------------------------------------------------------------- /games/crazy-snake/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/crazy-snake/sounds/music.wav -------------------------------------------------------------------------------- /games/cube-jump/assets/platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/cube-jump/assets/platforms.png -------------------------------------------------------------------------------- /games/dark-blue/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/coin.png -------------------------------------------------------------------------------- /games/dark-blue/images/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/enemy.png -------------------------------------------------------------------------------- /games/dark-blue/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/loading.png -------------------------------------------------------------------------------- /games/dark-blue/images/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/loading2.png -------------------------------------------------------------------------------- /games/dark-blue/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/logo2.png -------------------------------------------------------------------------------- /games/dark-blue/images/player3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/player3.png -------------------------------------------------------------------------------- /games/dark-blue/images/sound4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/sound4.png -------------------------------------------------------------------------------- /games/dark-blue/images/success2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/success2.png -------------------------------------------------------------------------------- /games/dark-blue/images/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/images/tiles.png -------------------------------------------------------------------------------- /games/dark-blue/sounds/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/sounds/coin.wav -------------------------------------------------------------------------------- /games/dark-blue/sounds/dead.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/sounds/dead.wav -------------------------------------------------------------------------------- /games/dark-blue/sounds/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/sounds/jump.wav -------------------------------------------------------------------------------- /games/dark-blue/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/sounds/music.wav -------------------------------------------------------------------------------- /games/dark-blue/sounds/yeah.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dark-blue/sounds/yeah.mp3 -------------------------------------------------------------------------------- /games/dashy-panda/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dashy-panda/assets/ground.png -------------------------------------------------------------------------------- /games/dashy-panda/assets/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dashy-panda/assets/panda.png -------------------------------------------------------------------------------- /games/dashy-panda/assets/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dashy-panda/assets/spike.png -------------------------------------------------------------------------------- /games/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/demo.jpg -------------------------------------------------------------------------------- /games/diamond-digger/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/diamond-digger/assets/rock.png -------------------------------------------------------------------------------- /games/diamond-digger/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/diamond-digger/assets/tiles.png -------------------------------------------------------------------------------- /games/diamond-digger/assets/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/diamond-digger/assets/water.png -------------------------------------------------------------------------------- /games/digger/assets/background_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/background_city.png -------------------------------------------------------------------------------- /games/digger/assets/background_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/background_grass.png -------------------------------------------------------------------------------- /games/digger/assets/background_hill1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/background_hill1.png -------------------------------------------------------------------------------- /games/digger/assets/background_hill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/background_hill2.png -------------------------------------------------------------------------------- /games/digger/assets/background_sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/background_sky.png -------------------------------------------------------------------------------- /games/digger/assets/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/character.png -------------------------------------------------------------------------------- /games/digger/assets/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/gold.png -------------------------------------------------------------------------------- /games/digger/assets/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/grass.png -------------------------------------------------------------------------------- /games/digger/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/ground.png -------------------------------------------------------------------------------- /games/digger/assets/loading/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/loading/loading.png -------------------------------------------------------------------------------- /games/digger/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/logo.png -------------------------------------------------------------------------------- /games/digger/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/rock.png -------------------------------------------------------------------------------- /games/digger/assets/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/digger/assets/shop.png -------------------------------------------------------------------------------- /games/digger/js/main.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | window.Digger = { 3 | // reference to Phaser.Game instance 4 | game: null, 5 | // main function 6 | main: function() { 7 | this.game = new Phaser.Game(mt.data.map.viewportWidth, mt.data.map.viewportHeight, Phaser.AUTO, document.body, window.Digger.state.boot); 8 | }, 9 | // here we will store all states 10 | state: {} 11 | }; 12 | window.addEventListener('DOMContentLoaded', function() { 13 | window.Digger.main(); 14 | }, false); -------------------------------------------------------------------------------- /games/digger/js/state/character.js: -------------------------------------------------------------------------------- 1 | console.log('character file'); -------------------------------------------------------------------------------- /games/digger/js/state/menu.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | window.Digger.state.menu = { 3 | create: function() { 4 | // you can create menu group in map editor and load it like this: 5 | // mt.createGroup("menu"); 6 | this.game.state.start("play"); 7 | }, 8 | update: function() { 9 | } 10 | }; -------------------------------------------------------------------------------- /games/doodle-jump/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/doodle-jump/assets/background.png -------------------------------------------------------------------------------- /games/doodle-jump/assets/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/doodle-jump/assets/clouds.png -------------------------------------------------------------------------------- /games/doodle-jump/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/doodle-jump/assets/dude.png -------------------------------------------------------------------------------- /games/doodle-jump/assets/ice-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/doodle-jump/assets/ice-platform.png -------------------------------------------------------------------------------- /games/doodle-jump/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/doodle-jump/assets/platform.png -------------------------------------------------------------------------------- /games/doodle-jump/assets/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/doodle-jump/assets/trees.png -------------------------------------------------------------------------------- /games/down-the-mountain/assets/hexagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/down-the-mountain/assets/hexagon.png -------------------------------------------------------------------------------- /games/down-the-mountain/assets/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/down-the-mountain/assets/marker.png -------------------------------------------------------------------------------- /games/draggable-and-scrollable-with-inertia/assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/draggable-and-scrollable-with-inertia/assets/map.png -------------------------------------------------------------------------------- /games/drop-wizard/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/drop-wizard/assets/bullet.png -------------------------------------------------------------------------------- /games/drop-wizard/assets/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/drop-wizard/assets/enemy.png -------------------------------------------------------------------------------- /games/drop-wizard/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/drop-wizard/assets/ground.png -------------------------------------------------------------------------------- /games/drop-wizard/assets/platform120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/drop-wizard/assets/platform120.png -------------------------------------------------------------------------------- /games/drop-wizard/assets/platform180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/drop-wizard/assets/platform180.png -------------------------------------------------------------------------------- /games/drop-wizard/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/drop-wizard/assets/player.png -------------------------------------------------------------------------------- /games/dungeon-raid/assets/sprites/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dungeon-raid/assets/sprites/arrows.png -------------------------------------------------------------------------------- /games/dungeon-raid/assets/sprites/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/dungeon-raid/assets/sprites/tiles.png -------------------------------------------------------------------------------- /games/easystarjs/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/easystarjs/assets/.gitkeep -------------------------------------------------------------------------------- /games/endless-scale/assets/ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/endless-scale/assets/ninja.png -------------------------------------------------------------------------------- /games/endless-scale/assets/pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/endless-scale/assets/pole.png -------------------------------------------------------------------------------- /games/endless-scale/assets/powerbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/endless-scale/assets/powerbar.png -------------------------------------------------------------------------------- /games/fill-the-holes/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/images/arrows.png -------------------------------------------------------------------------------- /games/fill-the-holes/images/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/images/box.png -------------------------------------------------------------------------------- /games/fill-the-holes/images/hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/images/hole.png -------------------------------------------------------------------------------- /games/fill-the-holes/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/images/loading.png -------------------------------------------------------------------------------- /games/fill-the-holes/images/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/images/loading2.png -------------------------------------------------------------------------------- /games/fill-the-holes/images/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/images/wall.png -------------------------------------------------------------------------------- /games/fill-the-holes/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/sounds/hit.wav -------------------------------------------------------------------------------- /games/fill-the-holes/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/sounds/music.wav -------------------------------------------------------------------------------- /games/fill-the-holes/sounds/next.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/fill-the-holes/sounds/next.wav -------------------------------------------------------------------------------- /games/first-game/assets/baddie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/first-game/assets/baddie.png -------------------------------------------------------------------------------- /games/first-game/assets/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/first-game/assets/diamond.png -------------------------------------------------------------------------------- /games/first-game/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/first-game/assets/dude.png -------------------------------------------------------------------------------- /games/first-game/assets/firstaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/first-game/assets/firstaid.png -------------------------------------------------------------------------------- /games/first-game/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/first-game/assets/platform.png -------------------------------------------------------------------------------- /games/first-game/assets/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/first-game/assets/sky.png -------------------------------------------------------------------------------- /games/first-game/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/first-game/assets/star.png -------------------------------------------------------------------------------- /games/flappy-bird-2/assets/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-2/assets/bird.png -------------------------------------------------------------------------------- /games/flappy-bird-2/assets/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-2/assets/jump.wav -------------------------------------------------------------------------------- /games/flappy-bird-2/assets/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-2/assets/pipe.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/background.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/bird.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/flap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/flap.wav -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/fonts/flappyfont/flappyfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/fonts/flappyfont/flappyfont.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/gameover.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/get-ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/get-ready.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/ground-hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/ground-hit.wav -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/ground.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/instructions.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/medals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/medals.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/ouch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/ouch.wav -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/particle.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/pipe-hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/pipe-hit.wav -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/pipes.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/preloader.gif -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/score.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/score.wav -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/scoreboard.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/start-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/start-button.png -------------------------------------------------------------------------------- /games/flappy-bird-reborn/assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird-reborn/assets/title.png -------------------------------------------------------------------------------- /games/flappy-bird/assets/imgs/background-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird/assets/imgs/background-texture.png -------------------------------------------------------------------------------- /games/flappy-bird/assets/imgs/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird/assets/imgs/player.png -------------------------------------------------------------------------------- /games/flappy-bird/assets/imgs/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird/assets/imgs/wall.png -------------------------------------------------------------------------------- /games/flappy-bird/assets/snds/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird/assets/snds/hurt.wav -------------------------------------------------------------------------------- /games/flappy-bird/assets/snds/jet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird/assets/snds/jet.wav -------------------------------------------------------------------------------- /games/flappy-bird/assets/snds/score.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flappy-bird/assets/snds/score.wav -------------------------------------------------------------------------------- /games/flipping-legend/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flipping-legend/assets/hero.png -------------------------------------------------------------------------------- /games/flipping-legend/assets/hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flipping-legend/assets/hole.png -------------------------------------------------------------------------------- /games/flipping-legend/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flipping-legend/assets/tile.png -------------------------------------------------------------------------------- /games/flood-fill/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/flood-fill/assets/tile.png -------------------------------------------------------------------------------- /games/goat-rider/assets/goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/goat-rider/assets/goat.png -------------------------------------------------------------------------------- /games/goat-rider/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/goat-rider/assets/player.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards0.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards1.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards2.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards3.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards4.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards5.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards6.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards7.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards8.png -------------------------------------------------------------------------------- /games/guessnext/assets/cards9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/cards9.png -------------------------------------------------------------------------------- /games/guessnext/assets/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/info.png -------------------------------------------------------------------------------- /games/guessnext/assets/swipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/guessnext/assets/swipe.png -------------------------------------------------------------------------------- /games/gyro.js/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/gyro.js/assets/player.png -------------------------------------------------------------------------------- /games/hexagonal-tiles/assets/hexagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hexagonal-tiles/assets/hexagon.png -------------------------------------------------------------------------------- /games/hexagonal-tiles/assets/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hexagonal-tiles/assets/marker.png -------------------------------------------------------------------------------- /games/hi-low/assets/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hi-low/assets/gameover.png -------------------------------------------------------------------------------- /games/hi-low/assets/gametitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hi-low/assets/gametitle.png -------------------------------------------------------------------------------- /games/hi-low/assets/higher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hi-low/assets/higher.png -------------------------------------------------------------------------------- /games/hi-low/assets/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hi-low/assets/loading.png -------------------------------------------------------------------------------- /games/hi-low/assets/lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hi-low/assets/lower.png -------------------------------------------------------------------------------- /games/hi-low/assets/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hi-low/assets/numbers.png -------------------------------------------------------------------------------- /games/hi-low/assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/hi-low/assets/play.png -------------------------------------------------------------------------------- /games/horror-ray-casting/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/horror-ray-casting/assets/.gitkeep -------------------------------------------------------------------------------- /games/horror/assets/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/horror/assets/floor.png -------------------------------------------------------------------------------- /games/horror/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/horror/assets/player.png -------------------------------------------------------------------------------- /games/horror/assets/walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/horror/assets/walls.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/images/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/images/bad.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/images/circle.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/images/facebook.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/images/loading-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/images/loading-border.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/images/loading.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/images/rabbit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/images/rabbit2.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/images/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/images/tweet.png -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/a.mp3 -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/e.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/e.mp3 -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/haho.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/haho.mp3 -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/i.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/i.mp3 -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/music.wav -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/o.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/o.mp3 -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/u.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/u.mp3 -------------------------------------------------------------------------------- /games/i-hate-rabbits/sounds/yeah.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/i-hate-rabbits/sounds/yeah.mp3 -------------------------------------------------------------------------------- /games/infinite-runner/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/infinite-runner/assets/bg.png -------------------------------------------------------------------------------- /games/infinite-runner/assets/midground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/infinite-runner/assets/midground.png -------------------------------------------------------------------------------- /games/infinite-runner/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/infinite-runner/assets/rock.png -------------------------------------------------------------------------------- /games/infinite-runner/js/images.js: -------------------------------------------------------------------------------- 1 | var imagesData = [ 2 | "assets/bg.png", 3 | "assets/midground.png", 4 | "assets/rock.png" 5 | ]; 6 | -------------------------------------------------------------------------------- /games/iromeku/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/iromeku/assets/tile.png -------------------------------------------------------------------------------- /games/level-selection-with-locked-and-stars/assets/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/level-selection-with-locked-and-stars/assets/game.png -------------------------------------------------------------------------------- /games/level-selection-with-locked-and-stars/assets/level_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/level-selection-with-locked-and-stars/assets/level_arrows.png -------------------------------------------------------------------------------- /games/level-selection-with-locked-and-stars/assets/levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/level-selection-with-locked-and-stars/assets/levels.png -------------------------------------------------------------------------------- /games/level-selection/assets/levelthumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/level-selection/assets/levelthumb.png -------------------------------------------------------------------------------- /games/level-selection/assets/transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/level-selection/assets/transp.png -------------------------------------------------------------------------------- /games/lighting/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/lighting/assets/bg.jpg -------------------------------------------------------------------------------- /games/lighting/assets/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/lighting/assets/black.png -------------------------------------------------------------------------------- /games/lighting/assets/player.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/lighting/assets/player.jpg -------------------------------------------------------------------------------- /games/magick/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/magick/assets/block.png -------------------------------------------------------------------------------- /games/magick/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/magick/assets/player.png -------------------------------------------------------------------------------- /games/magick/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/magick/assets/rock.png -------------------------------------------------------------------------------- /games/man-vs-penguins/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/images/bg.png -------------------------------------------------------------------------------- /games/man-vs-penguins/images/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/images/brick.png -------------------------------------------------------------------------------- /games/man-vs-penguins/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/images/coin.png -------------------------------------------------------------------------------- /games/man-vs-penguins/images/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/images/enemy.png -------------------------------------------------------------------------------- /games/man-vs-penguins/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/images/loading.png -------------------------------------------------------------------------------- /games/man-vs-penguins/images/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/images/player.png -------------------------------------------------------------------------------- /games/man-vs-penguins/sounds/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/sounds/coin.wav -------------------------------------------------------------------------------- /games/man-vs-penguins/sounds/dead.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/sounds/dead.wav -------------------------------------------------------------------------------- /games/man-vs-penguins/sounds/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/sounds/jump.wav -------------------------------------------------------------------------------- /games/man-vs-penguins/sounds/kill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/sounds/kill.wav -------------------------------------------------------------------------------- /games/man-vs-penguins/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/man-vs-penguins/sounds/music.wav -------------------------------------------------------------------------------- /games/mass-attack/assets/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mass-attack/assets/balance.png -------------------------------------------------------------------------------- /games/mass-attack/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mass-attack/assets/ball.png -------------------------------------------------------------------------------- /games/maze/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/maze/assets/.gitkeep -------------------------------------------------------------------------------- /games/memdot/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/memdot/assets/background.png -------------------------------------------------------------------------------- /games/memdot/assets/circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/memdot/assets/circles.png -------------------------------------------------------------------------------- /games/memdot/assets/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/memdot/assets/timer.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/cloud.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/diamond.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/diamondparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/diamondparticle.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/floor.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/font.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/ground.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/hero.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/ladder.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/spike.png -------------------------------------------------------------------------------- /games/mike-dangers/assets/tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mike-dangers/assets/tap.png -------------------------------------------------------------------------------- /games/mikey-hooks/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/mikey-hooks/assets/.gitkeep -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/background.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/button-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/button-pause.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/button-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/button-start.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/candy.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/floor.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/gameover.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/loading-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/loading-bar.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/monster-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/monster-cover.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/monster-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/monster-idle.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/score-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/score-bg.png -------------------------------------------------------------------------------- /games/monster-wants-candy/assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/monster-wants-candy/assets/title.png -------------------------------------------------------------------------------- /games/monster-wants-candy/js/main-menu.js: -------------------------------------------------------------------------------- 1 | Candy.MainMenu = function(game) {}; 2 | Candy.MainMenu.prototype = { 3 | create: function() { 4 | // display images 5 | this.add.sprite(0, 0, 'background'); 6 | this.add.sprite(-130, Candy.GAME_HEIGHT - 514, 'monster-cover'); 7 | this.add.sprite((Candy.GAME_WIDTH - 395) / 2, 60, 'title'); 8 | // add the button that will start the game 9 | this.add.button(Candy.GAME_WIDTH - 401 - 10, Candy.GAME_HEIGHT - 143 - 10, 'button-start', this.startGame, this, 1, 0, 2); 10 | }, 11 | startGame: function() { 12 | // start the Game state 13 | this.state.start('Game'); 14 | } 15 | }; -------------------------------------------------------------------------------- /games/one-plus-two-equal-three/assets/buttonmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/one-plus-two-equal-three/assets/buttonmask.png -------------------------------------------------------------------------------- /games/one-plus-two-equal-three/assets/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/one-plus-two-equal-three/assets/buttons.png -------------------------------------------------------------------------------- /games/one-plus-two-equal-three/assets/timebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/one-plus-two-equal-three/assets/timebar.png -------------------------------------------------------------------------------- /games/one-tap-rpg/assets/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/one-tap-rpg/assets/coin.png -------------------------------------------------------------------------------- /games/one-tap-rpg/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/one-tap-rpg/assets/hero.png -------------------------------------------------------------------------------- /games/one-tap-rpg/assets/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/one-tap-rpg/assets/skull.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/astronaut.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/bg.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/btnMute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/btnMute.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/btnPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/btnPlay.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/btnPlayAgain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/btnPlayAgain.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/burnParticles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/burnParticles.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/frame.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/junk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/junk1.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/junk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/junk2.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/junk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/junk3.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/logo.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/pickupShield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/pickupShield.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/pickupSlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/pickupSlow.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/pickupSpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/pickupSpeed.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/powerupShield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/powerupShield.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/powerupSpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/powerupSpeed.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/satellite1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/satellite1.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/satellite1B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/satellite1B.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/satellite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/satellite2.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/satellite2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/satellite2B.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/station.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/stationFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/stationFire.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/art/youCallout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/art/youCallout.png -------------------------------------------------------------------------------- /games/orbital-debris/assets/audio/dreamculture.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/audio/dreamculture.mp3 -------------------------------------------------------------------------------- /games/orbital-debris/assets/audio/dreamculture.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/orbital-debris/assets/audio/dreamculture.ogg -------------------------------------------------------------------------------- /games/pacman-2/assets/barrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman-2/assets/barrier.png -------------------------------------------------------------------------------- /games/pacman-2/assets/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman-2/assets/dot.png -------------------------------------------------------------------------------- /games/pacman-2/assets/ghosts32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman-2/assets/ghosts32.png -------------------------------------------------------------------------------- /games/pacman-2/assets/pacman-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman-2/assets/pacman-tiles.png -------------------------------------------------------------------------------- /games/pacman-2/assets/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman-2/assets/pacman.png -------------------------------------------------------------------------------- /games/pacman-2/assets/pill16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman-2/assets/pill16.png -------------------------------------------------------------------------------- /games/pacman/assets/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman/assets/dot.png -------------------------------------------------------------------------------- /games/pacman/assets/pacman-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman/assets/pacman-tiles.png -------------------------------------------------------------------------------- /games/pacman/assets/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pacman/assets/pacman.png -------------------------------------------------------------------------------- /games/particle-storm/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/particle-storm/assets/.gitkeep -------------------------------------------------------------------------------- /games/particle-storm/assets/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/particle-storm/assets/cloud.png -------------------------------------------------------------------------------- /games/particle-storm/assets/phaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/particle-storm/assets/phaser.png -------------------------------------------------------------------------------- /games/particle-storm/assets/sky10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/particle-storm/assets/sky10.png -------------------------------------------------------------------------------- /games/particle-storm/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/particle-storm/assets/star.png -------------------------------------------------------------------------------- /games/particle-to-sprite/assets/fireblob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/particle-to-sprite/assets/fireblob.png -------------------------------------------------------------------------------- /games/paths-aliens/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-aliens/assets/arrow.png -------------------------------------------------------------------------------- /games/paths-aliens/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-aliens/assets/shmupfont.png -------------------------------------------------------------------------------- /games/paths-aliens/assets/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-aliens/assets/ufo.png -------------------------------------------------------------------------------- /games/paths-face/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-face/assets/arrow.png -------------------------------------------------------------------------------- /games/paths-face/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-face/assets/shmupfont.png -------------------------------------------------------------------------------- /games/paths-face/assets/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-face/assets/ufo.png -------------------------------------------------------------------------------- /games/paths-paths/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-paths/assets/arrow.png -------------------------------------------------------------------------------- /games/paths-paths/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-paths/assets/shmupfont.png -------------------------------------------------------------------------------- /games/paths-paths/assets/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/paths-paths/assets/ufo.png -------------------------------------------------------------------------------- /games/perfect-square/assets/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/perfect-square/assets/base.png -------------------------------------------------------------------------------- /games/perfect-square/assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/perfect-square/assets/font.png -------------------------------------------------------------------------------- /games/perfect-square/assets/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/perfect-square/assets/square.png -------------------------------------------------------------------------------- /games/perfect-square/assets/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/perfect-square/assets/top.png -------------------------------------------------------------------------------- /games/phshare/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/phshare/js/game.js -------------------------------------------------------------------------------- /games/pixel-war/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/images/bg.png -------------------------------------------------------------------------------- /games/pixel-war/images/bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/images/bonus.png -------------------------------------------------------------------------------- /games/pixel-war/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/images/bullet.png -------------------------------------------------------------------------------- /games/pixel-war/images/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/images/enemy.png -------------------------------------------------------------------------------- /games/pixel-war/images/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/images/fire.png -------------------------------------------------------------------------------- /games/pixel-war/images/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/images/pixel.png -------------------------------------------------------------------------------- /games/pixel-war/images/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/images/player.png -------------------------------------------------------------------------------- /games/pixel-war/sounds/bonus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/sounds/bonus.wav -------------------------------------------------------------------------------- /games/pixel-war/sounds/dead.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/sounds/dead.wav -------------------------------------------------------------------------------- /games/pixel-war/sounds/exp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/sounds/exp.wav -------------------------------------------------------------------------------- /games/pixel-war/sounds/fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/sounds/fire.wav -------------------------------------------------------------------------------- /games/pixel-war/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pixel-war/sounds/hit.wav -------------------------------------------------------------------------------- /games/platformer-2/assets/cloud-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer-2/assets/cloud-platform.png -------------------------------------------------------------------------------- /games/platformer-2/assets/clouds-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer-2/assets/clouds-h.png -------------------------------------------------------------------------------- /games/platformer-2/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer-2/assets/dude.png -------------------------------------------------------------------------------- /games/platformer-2/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer-2/assets/platform.png -------------------------------------------------------------------------------- /games/platformer-2/assets/trees-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer-2/assets/trees-h.png -------------------------------------------------------------------------------- /games/platformer/assets/baddie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer/assets/baddie.png -------------------------------------------------------------------------------- /games/platformer/assets/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer/assets/diamond.png -------------------------------------------------------------------------------- /games/platformer/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer/assets/dude.png -------------------------------------------------------------------------------- /games/platformer/assets/firstaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer/assets/firstaid.png -------------------------------------------------------------------------------- /games/platformer/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer/assets/platform.png -------------------------------------------------------------------------------- /games/platformer/assets/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer/assets/sky.png -------------------------------------------------------------------------------- /games/platformer/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/platformer/assets/star.png -------------------------------------------------------------------------------- /games/pong/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/ball.png -------------------------------------------------------------------------------- /games/pong/assets/ballBounce.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/ballBounce.m4a -------------------------------------------------------------------------------- /games/pong/assets/ballBounce.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/ballBounce.ogg -------------------------------------------------------------------------------- /games/pong/assets/ballHit.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/ballHit.m4a -------------------------------------------------------------------------------- /games/pong/assets/ballHit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/ballHit.ogg -------------------------------------------------------------------------------- /games/pong/assets/ballMissed.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/ballMissed.m4a -------------------------------------------------------------------------------- /games/pong/assets/ballMissed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/ballMissed.ogg -------------------------------------------------------------------------------- /games/pong/assets/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pong/assets/paddle.png -------------------------------------------------------------------------------- /games/pop-the-lock/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pop-the-lock/assets/ball.png -------------------------------------------------------------------------------- /games/pop-the-lock/assets/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pop-the-lock/assets/bar.png -------------------------------------------------------------------------------- /games/pop-the-lock/assets/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/pop-the-lock/assets/ring.png -------------------------------------------------------------------------------- /games/princess-quest/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/cloud.png -------------------------------------------------------------------------------- /games/princess-quest/images/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/ground.png -------------------------------------------------------------------------------- /games/princess-quest/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/heart.png -------------------------------------------------------------------------------- /games/princess-quest/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/line.png -------------------------------------------------------------------------------- /games/princess-quest/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/loading.png -------------------------------------------------------------------------------- /games/princess-quest/images/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/loading2.png -------------------------------------------------------------------------------- /games/princess-quest/images/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/mute.png -------------------------------------------------------------------------------- /games/princess-quest/images/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/platform.png -------------------------------------------------------------------------------- /games/princess-quest/images/princess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/princess.png -------------------------------------------------------------------------------- /games/princess-quest/images/princess_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/princess_zoom.png -------------------------------------------------------------------------------- /games/princess-quest/images/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/images/spike.png -------------------------------------------------------------------------------- /games/princess-quest/sounds/dead.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/sounds/dead.wav -------------------------------------------------------------------------------- /games/princess-quest/sounds/heart.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/sounds/heart.wav -------------------------------------------------------------------------------- /games/princess-quest/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/sounds/hit.wav -------------------------------------------------------------------------------- /games/princess-quest/sounds/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/sounds/jump.wav -------------------------------------------------------------------------------- /games/princess-quest/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/princess-quest/sounds/music.wav -------------------------------------------------------------------------------- /games/radical/assets/barrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/radical/assets/barrier.png -------------------------------------------------------------------------------- /games/radical/assets/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/radical/assets/ship.png -------------------------------------------------------------------------------- /games/radical/assets/verticalbarrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/radical/assets/verticalbarrier.png -------------------------------------------------------------------------------- /games/revenge/assets/sprites/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/revenge/assets/sprites/particle.png -------------------------------------------------------------------------------- /games/revenge/assets/sprites/spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/revenge/assets/sprites/spaceship.png -------------------------------------------------------------------------------- /games/rise-above/assets/fonts/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/fonts/font.png -------------------------------------------------------------------------------- /games/rise-above/assets/sounds/bgmusic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sounds/bgmusic.mp3 -------------------------------------------------------------------------------- /games/rise-above/assets/sounds/bgmusic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sounds/bgmusic.ogg -------------------------------------------------------------------------------- /games/rise-above/assets/sounds/explosion.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sounds/explosion.mp3 -------------------------------------------------------------------------------- /games/rise-above/assets/sounds/explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sounds/explosion.ogg -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/backsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/backsplash.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/barrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/barrier.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/playbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/playbutton.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/separator.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/ship.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/smoke.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/title.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/tunnelbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/tunnelbg.png -------------------------------------------------------------------------------- /games/rise-above/assets/sprites/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rise-above/assets/sprites/wall.png -------------------------------------------------------------------------------- /games/run/assets/enemy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/run/assets/enemy1.png -------------------------------------------------------------------------------- /games/run/assets/enemy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/run/assets/enemy2.png -------------------------------------------------------------------------------- /games/run/assets/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/run/assets/hit.wav -------------------------------------------------------------------------------- /games/run/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/run/assets/player.png -------------------------------------------------------------------------------- /games/rush-hour/assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rush-hour/assets/car.png -------------------------------------------------------------------------------- /games/rush-hour/assets/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rush-hour/assets/field.png -------------------------------------------------------------------------------- /games/rush-hour/assets/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/rush-hour/assets/truck.png -------------------------------------------------------------------------------- /games/samegame/assets/sprites/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/samegame/assets/sprites/tile.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/drivin-home-low.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/drivin-home-low.mp3 -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/game-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/game-logo.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/game-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/game-over.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/ground.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/ho-ho-ho.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/ho-ho-ho.mp3 -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/instructions.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/jump-sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/jump-sound.mp3 -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/play-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/play-btn.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/restart-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/restart-btn.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/santa-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/santa-running.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/snow-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/snow-bg.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/snowflake.png -------------------------------------------------------------------------------- /games/santa-on-the-run/assets/start-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/santa-on-the-run/assets/start-btn.png -------------------------------------------------------------------------------- /games/save-the-city/images/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/images/bomb.png -------------------------------------------------------------------------------- /games/save-the-city/images/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/images/city.png -------------------------------------------------------------------------------- /games/save-the-city/images/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/images/explosion.png -------------------------------------------------------------------------------- /games/save-the-city/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/images/loading.png -------------------------------------------------------------------------------- /games/save-the-city/images/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/images/loading2.png -------------------------------------------------------------------------------- /games/save-the-city/images/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/images/pixel.png -------------------------------------------------------------------------------- /games/save-the-city/images/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/images/restart.png -------------------------------------------------------------------------------- /games/save-the-city/sounds/exp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/sounds/exp.wav -------------------------------------------------------------------------------- /games/save-the-city/sounds/fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/sounds/fire.wav -------------------------------------------------------------------------------- /games/save-the-city/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/save-the-city/sounds/hit.wav -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/background.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/blackfade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/blackfade.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/bubble.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/gametitle_mines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/gametitle_mines.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/gametitle_sealife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/gametitle_sealife.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/gametitle_vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/gametitle_vs.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/loading.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/logo.png -------------------------------------------------------------------------------- /games/sea-life-vs-mines/assets/sprites/playbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sea-life-vs-mines/assets/sprites/playbutton.png -------------------------------------------------------------------------------- /games/shootout/assets/casing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/casing.mp3 -------------------------------------------------------------------------------- /games/shootout/assets/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/draw.png -------------------------------------------------------------------------------- /games/shootout/assets/fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/fire.mp3 -------------------------------------------------------------------------------- /games/shootout/assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/font.png -------------------------------------------------------------------------------- /games/shootout/assets/lose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/lose.png -------------------------------------------------------------------------------- /games/shootout/assets/photonstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/photonstorm.png -------------------------------------------------------------------------------- /games/shootout/assets/preload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/preload.png -------------------------------------------------------------------------------- /games/shootout/assets/reload.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/reload.mp3 -------------------------------------------------------------------------------- /games/shootout/assets/splat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/splat.mp3 -------------------------------------------------------------------------------- /games/shootout/assets/standoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/standoff.png -------------------------------------------------------------------------------- /games/shootout/assets/walk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/walk.mp3 -------------------------------------------------------------------------------- /games/shootout/assets/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/shootout/assets/win.png -------------------------------------------------------------------------------- /games/sokoban-responsive/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sokoban-responsive/assets/tiles.png -------------------------------------------------------------------------------- /games/sokoban-swipe/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/sokoban-swipe/assets/tiles.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/enemy.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/logo.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/player-particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/player-particle.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/player.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/power.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/preloader-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/preloader-bar.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/rock.png -------------------------------------------------------------------------------- /games/space-hipster/assets/imgs/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/imgs/space.png -------------------------------------------------------------------------------- /games/space-hipster/assets/snds/collect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/snds/collect.ogg -------------------------------------------------------------------------------- /games/space-hipster/assets/snds/explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-hipster/assets/snds/explosion.ogg -------------------------------------------------------------------------------- /games/space-is-key/assets/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-is-key/assets/spike.png -------------------------------------------------------------------------------- /games/space-is-key/assets/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/space-is-key/assets/square.png -------------------------------------------------------------------------------- /games/spellfall/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spellfall/assets/tiles.png -------------------------------------------------------------------------------- /games/spin-wheel/assets/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spin-wheel/assets/pin.png -------------------------------------------------------------------------------- /games/spin-wheel/assets/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spin-wheel/assets/wheel.png -------------------------------------------------------------------------------- /games/splashscreen/assets/splash1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/splashscreen/assets/splash1.jpg -------------------------------------------------------------------------------- /games/splashscreen/assets/splash2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/splashscreen/assets/splash2.jpg -------------------------------------------------------------------------------- /games/splashscreen/assets/splash3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/splashscreen/assets/splash3.jpg -------------------------------------------------------------------------------- /games/splashscreen/assets/splash4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/splashscreen/assets/splash4.jpg -------------------------------------------------------------------------------- /games/splashscreen/assets/splash5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/splashscreen/assets/splash5.jpg -------------------------------------------------------------------------------- /games/spring-ninja-double-jump/assets/ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spring-ninja-double-jump/assets/ninja.png -------------------------------------------------------------------------------- /games/spring-ninja-double-jump/assets/pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spring-ninja-double-jump/assets/pole.png -------------------------------------------------------------------------------- /games/spring-ninja-double-jump/assets/powerbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spring-ninja-double-jump/assets/powerbar.png -------------------------------------------------------------------------------- /games/spring-ninja/assets/ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spring-ninja/assets/ninja.png -------------------------------------------------------------------------------- /games/spring-ninja/assets/pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spring-ninja/assets/pole.png -------------------------------------------------------------------------------- /games/spring-ninja/assets/powerbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/spring-ninja/assets/powerbar.png -------------------------------------------------------------------------------- /games/square-one/assets/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/square-one/assets/square.png -------------------------------------------------------------------------------- /games/state-transition-plugin/assets/button_sprite_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/state-transition-plugin/assets/button_sprite_sheet.png -------------------------------------------------------------------------------- /games/state-transition-plugin/assets/element_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/state-transition-plugin/assets/element_blue.png -------------------------------------------------------------------------------- /games/state-transition-plugin/assets/element_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/state-transition-plugin/assets/element_red.png -------------------------------------------------------------------------------- /games/state-transition-plugin/assets/intro_of_dragons.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/state-transition-plugin/assets/intro_of_dragons.mp3 -------------------------------------------------------------------------------- /games/state-transition-plugin/assets/preloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/state-transition-plugin/assets/preloader.png -------------------------------------------------------------------------------- /games/straight-rush/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/straight-rush/assets/arrow.png -------------------------------------------------------------------------------- /games/straight-rush/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/straight-rush/assets/ball.png -------------------------------------------------------------------------------- /games/straight-rush/assets/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/straight-rush/assets/coin.png -------------------------------------------------------------------------------- /games/straight-rush/assets/deadly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/straight-rush/assets/deadly.png -------------------------------------------------------------------------------- /games/string-avoider-2/assets/maze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/string-avoider-2/assets/maze.png -------------------------------------------------------------------------------- /games/string-avoider/assets/maze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/string-avoider/assets/maze.png -------------------------------------------------------------------------------- /games/super-coin-box/assets/fonts/ARCADECLASSIC.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/fonts/ARCADECLASSIC.TTF -------------------------------------------------------------------------------- /games/super-coin-box/assets/images/controls-spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/images/controls-spritesheet.png -------------------------------------------------------------------------------- /games/super-coin-box/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/images/favicon.ico -------------------------------------------------------------------------------- /games/super-coin-box/assets/images/game-spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/images/game-spritesheet.png -------------------------------------------------------------------------------- /games/super-coin-box/assets/images/progressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/images/progressBar.png -------------------------------------------------------------------------------- /games/super-coin-box/assets/images/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/images/tileset.png -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/coin.mp3 -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/coin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/coin.ogg -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/dead.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/dead.mp3 -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/dead.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/dead.ogg -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/intro.mp3 -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/intro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/intro.ogg -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/jump.mp3 -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/jump.ogg -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/kill_the_enemy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/kill_the_enemy.mp3 -------------------------------------------------------------------------------- /games/super-coin-box/assets/sounds/kill_the_enemy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/super-coin-box/assets/sounds/kill_the_enemy.ogg -------------------------------------------------------------------------------- /games/tank/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/tank/assets/background.png -------------------------------------------------------------------------------- /games/tank/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/tank/assets/bullet.png -------------------------------------------------------------------------------- /games/tank/assets/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/tank/assets/flame.png -------------------------------------------------------------------------------- /games/tank/assets/land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/tank/assets/land.png -------------------------------------------------------------------------------- /games/tank/assets/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/tank/assets/tank.png -------------------------------------------------------------------------------- /games/tank/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/tank/assets/target.png -------------------------------------------------------------------------------- /games/tank/assets/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/tank/assets/turret.png -------------------------------------------------------------------------------- /games/the-next-arrow/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-next-arrow/assets/tiles.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/dead.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/door.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/enemy.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/heart.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/key.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/loading.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/loading2.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/menu.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/player.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/sound.png -------------------------------------------------------------------------------- /games/the-three-hearths/images/tiles4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/images/tiles4.png -------------------------------------------------------------------------------- /games/the-three-hearths/sounds/dead.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/sounds/dead.wav -------------------------------------------------------------------------------- /games/the-three-hearths/sounds/heart.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/sounds/heart.wav -------------------------------------------------------------------------------- /games/the-three-hearths/sounds/key.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/sounds/key.wav -------------------------------------------------------------------------------- /games/the-three-hearths/sounds/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/the-three-hearths/sounds/music.wav -------------------------------------------------------------------------------- /games/totem-destroyer/assets/1x1_destroy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/1x1_destroy.png -------------------------------------------------------------------------------- /games/totem-destroyer/assets/2x1_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/2x1_solid.png -------------------------------------------------------------------------------- /games/totem-destroyer/assets/3x1_destroy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/3x1_destroy.png -------------------------------------------------------------------------------- /games/totem-destroyer/assets/4x1_destroy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/4x1_destroy.png -------------------------------------------------------------------------------- /games/totem-destroyer/assets/4x2_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/4x2_solid.png -------------------------------------------------------------------------------- /games/totem-destroyer/assets/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/grass.png -------------------------------------------------------------------------------- /games/totem-destroyer/assets/sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/sensor.png -------------------------------------------------------------------------------- /games/totem-destroyer/assets/totem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/totem-destroyer/assets/totem.png -------------------------------------------------------------------------------- /games/trick-shot/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/trick-shot/assets/ball.png -------------------------------------------------------------------------------- /games/twin-spin/assets/arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/twin-spin/assets/arm.png -------------------------------------------------------------------------------- /games/twin-spin/assets/firstball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/twin-spin/assets/firstball.png -------------------------------------------------------------------------------- /games/twin-spin/assets/secondball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/twin-spin/assets/secondball.png -------------------------------------------------------------------------------- /games/two-cars/assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/two-cars/assets/car.png -------------------------------------------------------------------------------- /games/two-cars/assets/obstacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/two-cars/assets/obstacle.png -------------------------------------------------------------------------------- /games/two-cars/assets/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/two-cars/assets/road.png -------------------------------------------------------------------------------- /games/two-cars/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/two-cars/assets/target.png -------------------------------------------------------------------------------- /games/wall-jump/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/wall-jump/assets/hero.png -------------------------------------------------------------------------------- /games/wall-jump/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/wall-jump/assets/tile.png -------------------------------------------------------------------------------- /games/webfont/assets/Lobster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/webfont/assets/Lobster-Regular.ttf -------------------------------------------------------------------------------- /games/yeah-bunny/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/yeah-bunny/assets/hero.png -------------------------------------------------------------------------------- /games/yeah-bunny/assets/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/yeah-bunny/assets/tile.png -------------------------------------------------------------------------------- /games/zhed/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/games/zhed/assets/tiles.png -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'); 2 | var browserSync = require('browser-sync').create(); 3 | 4 | gulp.task('serve', function() { 5 | browserSync.init({ 6 | 'server': './', 7 | 'startPath': '/games/', 8 | 'open': true 9 | }); 10 | 11 | gulp.watch('./games/**/index.html').on('change', browserSync.reload); 12 | gulp.watch('./games/**/js/*.js').on('change', browserSync.reload); 13 | }); 14 | 15 | gulp.task('default', ['serve']); 16 | -------------------------------------------------------------------------------- /screenshots/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/.gitkeep -------------------------------------------------------------------------------- /screenshots/10000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/10000000.jpg -------------------------------------------------------------------------------- /screenshots/120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/120.jpg -------------------------------------------------------------------------------- /screenshots/123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/123.jpg -------------------------------------------------------------------------------- /screenshots/2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/2048.jpg -------------------------------------------------------------------------------- /screenshots/angry-birds-space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/angry-birds-space.jpg -------------------------------------------------------------------------------- /screenshots/ascii-roguelike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/ascii-roguelike.jpg -------------------------------------------------------------------------------- /screenshots/boids-flocking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/boids-flocking.jpg -------------------------------------------------------------------------------- /screenshots/boids-steering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/boids-steering.jpg -------------------------------------------------------------------------------- /screenshots/boom-dots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/boom-dots.jpg -------------------------------------------------------------------------------- /screenshots/bouncing-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/bouncing-menu.jpg -------------------------------------------------------------------------------- /screenshots/box-jump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/box-jump.jpg -------------------------------------------------------------------------------- /screenshots/box2d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/box2d.jpg -------------------------------------------------------------------------------- /screenshots/breakout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/breakout.jpg -------------------------------------------------------------------------------- /screenshots/bresenham-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/bresenham-light.jpg -------------------------------------------------------------------------------- /screenshots/brick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/brick.jpg -------------------------------------------------------------------------------- /screenshots/bulletpool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/bulletpool.jpg -------------------------------------------------------------------------------- /screenshots/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/car.jpg -------------------------------------------------------------------------------- /screenshots/character-selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/character-selection.jpg -------------------------------------------------------------------------------- /screenshots/christmas-quest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/christmas-quest.jpg -------------------------------------------------------------------------------- /screenshots/circle-path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/circle-path.jpg -------------------------------------------------------------------------------- /screenshots/clocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/clocks.jpg -------------------------------------------------------------------------------- /screenshots/connected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/connected.jpg -------------------------------------------------------------------------------- /screenshots/crack-alien-code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/crack-alien-code.jpg -------------------------------------------------------------------------------- /screenshots/crazy-snake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/crazy-snake.jpg -------------------------------------------------------------------------------- /screenshots/cube-jump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/cube-jump.jpg -------------------------------------------------------------------------------- /screenshots/dark-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/dark-blue.jpg -------------------------------------------------------------------------------- /screenshots/dashy-panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/dashy-panda.jpg -------------------------------------------------------------------------------- /screenshots/diamond-digger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/diamond-digger.jpg -------------------------------------------------------------------------------- /screenshots/digger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/digger.jpg -------------------------------------------------------------------------------- /screenshots/doodle-jump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/doodle-jump.jpg -------------------------------------------------------------------------------- /screenshots/down-the-mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/down-the-mountain.jpg -------------------------------------------------------------------------------- /screenshots/draggable-and-scrollable-with-inertia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/draggable-and-scrollable-with-inertia.jpg -------------------------------------------------------------------------------- /screenshots/drop-wizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/drop-wizard.jpg -------------------------------------------------------------------------------- /screenshots/dungeon-raid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/dungeon-raid.jpg -------------------------------------------------------------------------------- /screenshots/easystarjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/easystarjs.jpg -------------------------------------------------------------------------------- /screenshots/endless-scale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/endless-scale.jpg -------------------------------------------------------------------------------- /screenshots/fill-the-holes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/fill-the-holes.jpg -------------------------------------------------------------------------------- /screenshots/first-game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/first-game.jpg -------------------------------------------------------------------------------- /screenshots/flappy-bird-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/flappy-bird-2.jpg -------------------------------------------------------------------------------- /screenshots/flappy-bird-reborn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/flappy-bird-reborn.jpg -------------------------------------------------------------------------------- /screenshots/flappy-bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/flappy-bird.jpg -------------------------------------------------------------------------------- /screenshots/flipping-legend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/flipping-legend.jpg -------------------------------------------------------------------------------- /screenshots/flood-fill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/flood-fill.jpg -------------------------------------------------------------------------------- /screenshots/fruit-ninja-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/fruit-ninja-2.jpg -------------------------------------------------------------------------------- /screenshots/fruit-ninja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/fruit-ninja.jpg -------------------------------------------------------------------------------- /screenshots/goat-rider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/goat-rider.jpg -------------------------------------------------------------------------------- /screenshots/guessnext.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/guessnext.jpg -------------------------------------------------------------------------------- /screenshots/gyro.js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/gyro.js.jpg -------------------------------------------------------------------------------- /screenshots/hexagonal-tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/hexagonal-tiles.jpg -------------------------------------------------------------------------------- /screenshots/hi-low.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/hi-low.jpg -------------------------------------------------------------------------------- /screenshots/horror-ray-casting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/horror-ray-casting.jpg -------------------------------------------------------------------------------- /screenshots/horror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/horror.jpg -------------------------------------------------------------------------------- /screenshots/i-hate-rabbits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/i-hate-rabbits.jpg -------------------------------------------------------------------------------- /screenshots/infinite-runner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/infinite-runner.jpg -------------------------------------------------------------------------------- /screenshots/iromeku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/iromeku.jpg -------------------------------------------------------------------------------- /screenshots/level-selection-with-locked-and-stars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/level-selection-with-locked-and-stars.jpg -------------------------------------------------------------------------------- /screenshots/level-selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/level-selection.jpg -------------------------------------------------------------------------------- /screenshots/lighting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/lighting.jpg -------------------------------------------------------------------------------- /screenshots/magick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/magick.jpg -------------------------------------------------------------------------------- /screenshots/man-vs-penguins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/man-vs-penguins.jpg -------------------------------------------------------------------------------- /screenshots/mass-attack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/mass-attack.jpg -------------------------------------------------------------------------------- /screenshots/maze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/maze.jpg -------------------------------------------------------------------------------- /screenshots/memdot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/memdot.jpg -------------------------------------------------------------------------------- /screenshots/mike-dangers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/mike-dangers.jpg -------------------------------------------------------------------------------- /screenshots/mikey-hooks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/mikey-hooks.jpg -------------------------------------------------------------------------------- /screenshots/monster-wants-candy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/monster-wants-candy.jpg -------------------------------------------------------------------------------- /screenshots/one-plus-two-equal-three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/one-plus-two-equal-three.jpg -------------------------------------------------------------------------------- /screenshots/one-tap-rpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/one-tap-rpg.jpg -------------------------------------------------------------------------------- /screenshots/orbital-debris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/orbital-debris.jpg -------------------------------------------------------------------------------- /screenshots/pacman-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/pacman-2.jpg -------------------------------------------------------------------------------- /screenshots/pacman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/pacman.jpg -------------------------------------------------------------------------------- /screenshots/particle-storm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/particle-storm.jpg -------------------------------------------------------------------------------- /screenshots/particle-to-sprite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/particle-to-sprite.jpg -------------------------------------------------------------------------------- /screenshots/paths-aliens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/paths-aliens.jpg -------------------------------------------------------------------------------- /screenshots/paths-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/paths-face.jpg -------------------------------------------------------------------------------- /screenshots/paths-paths.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/paths-paths.jpg -------------------------------------------------------------------------------- /screenshots/perfect-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/perfect-square.jpg -------------------------------------------------------------------------------- /screenshots/phshare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/phshare.jpg -------------------------------------------------------------------------------- /screenshots/pixel-war.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/pixel-war.jpg -------------------------------------------------------------------------------- /screenshots/platformer-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/platformer-2.jpg -------------------------------------------------------------------------------- /screenshots/platformer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/platformer.jpg -------------------------------------------------------------------------------- /screenshots/pong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/pong.jpg -------------------------------------------------------------------------------- /screenshots/pop-the-lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/pop-the-lock.jpg -------------------------------------------------------------------------------- /screenshots/princess-quest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/princess-quest.jpg -------------------------------------------------------------------------------- /screenshots/radical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/radical.jpg -------------------------------------------------------------------------------- /screenshots/revenge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/revenge.jpg -------------------------------------------------------------------------------- /screenshots/rise-above.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/rise-above.jpg -------------------------------------------------------------------------------- /screenshots/run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/run.jpg -------------------------------------------------------------------------------- /screenshots/rush-hour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/rush-hour.jpg -------------------------------------------------------------------------------- /screenshots/samegame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/samegame.jpg -------------------------------------------------------------------------------- /screenshots/santa-on-the-run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/santa-on-the-run.jpg -------------------------------------------------------------------------------- /screenshots/save-the-city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/save-the-city.jpg -------------------------------------------------------------------------------- /screenshots/screenshake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/screenshake.jpg -------------------------------------------------------------------------------- /screenshots/sea-life-vs-mines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/sea-life-vs-mines.jpg -------------------------------------------------------------------------------- /screenshots/shootout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/shootout.jpg -------------------------------------------------------------------------------- /screenshots/sokoban-responsive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/sokoban-responsive.jpg -------------------------------------------------------------------------------- /screenshots/sokoban-swipe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/sokoban-swipe.jpg -------------------------------------------------------------------------------- /screenshots/space-hipster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/space-hipster.jpg -------------------------------------------------------------------------------- /screenshots/space-is-key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/space-is-key.jpg -------------------------------------------------------------------------------- /screenshots/spellfall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/spellfall.jpg -------------------------------------------------------------------------------- /screenshots/spin-wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/spin-wheel.jpg -------------------------------------------------------------------------------- /screenshots/splashscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/splashscreen.jpg -------------------------------------------------------------------------------- /screenshots/spring-ninja-double-jump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/spring-ninja-double-jump.jpg -------------------------------------------------------------------------------- /screenshots/spring-ninja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/spring-ninja.jpg -------------------------------------------------------------------------------- /screenshots/square-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/square-one.jpg -------------------------------------------------------------------------------- /screenshots/state-transition-plugin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/state-transition-plugin.jpg -------------------------------------------------------------------------------- /screenshots/straight-rush.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/straight-rush.jpg -------------------------------------------------------------------------------- /screenshots/string-avoider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/string-avoider-2.jpg -------------------------------------------------------------------------------- /screenshots/string-avoider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/string-avoider.jpg -------------------------------------------------------------------------------- /screenshots/super-coin-box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/super-coin-box.jpg -------------------------------------------------------------------------------- /screenshots/tank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/tank.jpg -------------------------------------------------------------------------------- /screenshots/the-next-arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/the-next-arrow.jpg -------------------------------------------------------------------------------- /screenshots/the-three-hearths.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/the-three-hearths.jpg -------------------------------------------------------------------------------- /screenshots/totem-destroyer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/totem-destroyer.jpg -------------------------------------------------------------------------------- /screenshots/trick-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/trick-shot.jpg -------------------------------------------------------------------------------- /screenshots/twin-spin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/twin-spin.jpg -------------------------------------------------------------------------------- /screenshots/two-cars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/two-cars.jpg -------------------------------------------------------------------------------- /screenshots/wall-jump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/wall-jump.jpg -------------------------------------------------------------------------------- /screenshots/webfont.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/webfont.jpg -------------------------------------------------------------------------------- /screenshots/yeah-bunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/yeah-bunny.jpg -------------------------------------------------------------------------------- /screenshots/zhed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojoee/phaser-examples/7d76d302c191c119f7627a1630ae24818ff309d8/screenshots/zhed.jpg --------------------------------------------------------------------------------