├── issue-001 ├── assets │ ├── background.png │ ├── bullet.png │ ├── flame.png │ ├── tank.png │ ├── target.png │ └── turret.png ├── phaser-tips-header1.png └── tanks.html ├── issue-002 ├── assets │ ├── background.png │ ├── bullet.png │ ├── flame.png │ ├── land.png │ ├── tank.png │ ├── target.png │ └── turret.png ├── phaser-tips-header1.png └── tanks.html ├── issue-003 ├── assets │ ├── background.png │ ├── clouds.png │ ├── dude.png │ ├── ice-platform.png │ ├── platform.png │ └── trees.png ├── jumpup.html ├── phaser-tips-header1.png └── platforms.html ├── issue-004 ├── assets │ ├── cloud-platform.png │ ├── clouds-h.png │ ├── dude.png │ ├── platform.png │ └── trees-h.png ├── clouds.html └── phaser-tips-header1.png ├── issue-005 ├── assets │ ├── car.png │ ├── dot.png │ ├── maze.json │ ├── pacman-map.json │ ├── pacman-tiles.png │ ├── pacman.png │ └── tiles.png ├── car.html ├── pacman.html └── phaser-tips-header1.png ├── issue-006 ├── 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 ├── phaser-tips-header1.png └── shootout.html ├── issue-007 ├── 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 ├── bulletpool.html └── phaser-tips-header1.png └── issue-008 ├── aliens.html ├── assets ├── arrow.png ├── shmupfont.png ├── shmupfont.xml └── ufo.png ├── face.html ├── paths.html └── phaser-tips-header1.png /issue-001/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/background.png -------------------------------------------------------------------------------- /issue-001/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/bullet.png -------------------------------------------------------------------------------- /issue-001/assets/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/flame.png -------------------------------------------------------------------------------- /issue-001/assets/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/tank.png -------------------------------------------------------------------------------- /issue-001/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/target.png -------------------------------------------------------------------------------- /issue-001/assets/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/turret.png -------------------------------------------------------------------------------- /issue-001/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-001/tanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/tanks.html -------------------------------------------------------------------------------- /issue-002/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/background.png -------------------------------------------------------------------------------- /issue-002/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/bullet.png -------------------------------------------------------------------------------- /issue-002/assets/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/flame.png -------------------------------------------------------------------------------- /issue-002/assets/land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/land.png -------------------------------------------------------------------------------- /issue-002/assets/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/tank.png -------------------------------------------------------------------------------- /issue-002/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/target.png -------------------------------------------------------------------------------- /issue-002/assets/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/turret.png -------------------------------------------------------------------------------- /issue-002/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-002/tanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/tanks.html -------------------------------------------------------------------------------- /issue-003/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/background.png -------------------------------------------------------------------------------- /issue-003/assets/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/clouds.png -------------------------------------------------------------------------------- /issue-003/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/dude.png -------------------------------------------------------------------------------- /issue-003/assets/ice-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/ice-platform.png -------------------------------------------------------------------------------- /issue-003/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/platform.png -------------------------------------------------------------------------------- /issue-003/assets/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/trees.png -------------------------------------------------------------------------------- /issue-003/jumpup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/jumpup.html -------------------------------------------------------------------------------- /issue-003/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-003/platforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/platforms.html -------------------------------------------------------------------------------- /issue-004/assets/cloud-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/cloud-platform.png -------------------------------------------------------------------------------- /issue-004/assets/clouds-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/clouds-h.png -------------------------------------------------------------------------------- /issue-004/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/dude.png -------------------------------------------------------------------------------- /issue-004/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/platform.png -------------------------------------------------------------------------------- /issue-004/assets/trees-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/trees-h.png -------------------------------------------------------------------------------- /issue-004/clouds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/clouds.html -------------------------------------------------------------------------------- /issue-004/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-005/assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/car.png -------------------------------------------------------------------------------- /issue-005/assets/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/dot.png -------------------------------------------------------------------------------- /issue-005/assets/maze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/maze.json -------------------------------------------------------------------------------- /issue-005/assets/pacman-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/pacman-map.json -------------------------------------------------------------------------------- /issue-005/assets/pacman-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/pacman-tiles.png -------------------------------------------------------------------------------- /issue-005/assets/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/pacman.png -------------------------------------------------------------------------------- /issue-005/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/tiles.png -------------------------------------------------------------------------------- /issue-005/car.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/car.html -------------------------------------------------------------------------------- /issue-005/pacman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/pacman.html -------------------------------------------------------------------------------- /issue-005/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-006/assets/casing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/casing.mp3 -------------------------------------------------------------------------------- /issue-006/assets/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/draw.png -------------------------------------------------------------------------------- /issue-006/assets/fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/fire.mp3 -------------------------------------------------------------------------------- /issue-006/assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/font.png -------------------------------------------------------------------------------- /issue-006/assets/font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/font.xml -------------------------------------------------------------------------------- /issue-006/assets/lose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/lose.png -------------------------------------------------------------------------------- /issue-006/assets/photonstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/photonstorm.png -------------------------------------------------------------------------------- /issue-006/assets/preload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/preload.png -------------------------------------------------------------------------------- /issue-006/assets/reload.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/reload.mp3 -------------------------------------------------------------------------------- /issue-006/assets/splat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/splat.mp3 -------------------------------------------------------------------------------- /issue-006/assets/standoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/standoff.png -------------------------------------------------------------------------------- /issue-006/assets/walk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/walk.mp3 -------------------------------------------------------------------------------- /issue-006/assets/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/win.png -------------------------------------------------------------------------------- /issue-006/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-006/shootout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/shootout.html -------------------------------------------------------------------------------- /issue-007/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/back.png -------------------------------------------------------------------------------- /issue-007/assets/bullet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet1.png -------------------------------------------------------------------------------- /issue-007/assets/bullet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet10.png -------------------------------------------------------------------------------- /issue-007/assets/bullet11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet11.png -------------------------------------------------------------------------------- /issue-007/assets/bullet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet2.png -------------------------------------------------------------------------------- /issue-007/assets/bullet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet3.png -------------------------------------------------------------------------------- /issue-007/assets/bullet4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet4.png -------------------------------------------------------------------------------- /issue-007/assets/bullet5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet5.png -------------------------------------------------------------------------------- /issue-007/assets/bullet6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet6.png -------------------------------------------------------------------------------- /issue-007/assets/bullet7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet7.png -------------------------------------------------------------------------------- /issue-007/assets/bullet8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet8.png -------------------------------------------------------------------------------- /issue-007/assets/bullet9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet9.png -------------------------------------------------------------------------------- /issue-007/assets/fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/fore.png -------------------------------------------------------------------------------- /issue-007/assets/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/ship.png -------------------------------------------------------------------------------- /issue-007/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/shmupfont.png -------------------------------------------------------------------------------- /issue-007/assets/shmupfont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/shmupfont.xml -------------------------------------------------------------------------------- /issue-007/bulletpool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/bulletpool.html -------------------------------------------------------------------------------- /issue-007/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-008/aliens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/aliens.html -------------------------------------------------------------------------------- /issue-008/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/assets/arrow.png -------------------------------------------------------------------------------- /issue-008/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/assets/shmupfont.png -------------------------------------------------------------------------------- /issue-008/assets/shmupfont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/assets/shmupfont.xml -------------------------------------------------------------------------------- /issue-008/assets/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/assets/ufo.png -------------------------------------------------------------------------------- /issue-008/face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/face.html -------------------------------------------------------------------------------- /issue-008/paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/paths.html -------------------------------------------------------------------------------- /issue-008/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/phaser-tips-header1.png --------------------------------------------------------------------------------