├── 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/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-001/assets/background.png -------------------------------------------------------------------------------- /issue-001/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-001/assets/bullet.png -------------------------------------------------------------------------------- /issue-001/assets/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-001/assets/flame.png -------------------------------------------------------------------------------- /issue-001/assets/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-001/assets/tank.png -------------------------------------------------------------------------------- /issue-001/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-001/assets/target.png -------------------------------------------------------------------------------- /issue-001/assets/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-001/assets/turret.png -------------------------------------------------------------------------------- /issue-001/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-001/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-001/tanks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tanks - Part 1 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 229 | 230 | 231 | 232 | 233 | -------------------------------------------------------------------------------- /issue-002/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/assets/background.png -------------------------------------------------------------------------------- /issue-002/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/assets/bullet.png -------------------------------------------------------------------------------- /issue-002/assets/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/assets/flame.png -------------------------------------------------------------------------------- /issue-002/assets/land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/assets/land.png -------------------------------------------------------------------------------- /issue-002/assets/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/assets/tank.png -------------------------------------------------------------------------------- /issue-002/assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/assets/target.png -------------------------------------------------------------------------------- /issue-002/assets/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/assets/turret.png -------------------------------------------------------------------------------- /issue-002/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-002/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-002/tanks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tanks - Part 2 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 289 | 290 | 291 | 292 | 293 | -------------------------------------------------------------------------------- /issue-003/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-003/assets/background.png -------------------------------------------------------------------------------- /issue-003/assets/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-003/assets/clouds.png -------------------------------------------------------------------------------- /issue-003/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-003/assets/dude.png -------------------------------------------------------------------------------- /issue-003/assets/ice-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-003/assets/ice-platform.png -------------------------------------------------------------------------------- /issue-003/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-003/assets/platform.png -------------------------------------------------------------------------------- /issue-003/assets/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-003/assets/trees.png -------------------------------------------------------------------------------- /issue-003/jumpup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Platforms - JumpUp! 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 218 | 219 | 220 | 221 | 222 | -------------------------------------------------------------------------------- /issue-003/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-003/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-003/platforms.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Platforms - Part 1 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 169 | 170 | 171 | 172 | 173 | -------------------------------------------------------------------------------- /issue-004/assets/cloud-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-004/assets/cloud-platform.png -------------------------------------------------------------------------------- /issue-004/assets/clouds-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-004/assets/clouds-h.png -------------------------------------------------------------------------------- /issue-004/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-004/assets/dude.png -------------------------------------------------------------------------------- /issue-004/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-004/assets/platform.png -------------------------------------------------------------------------------- /issue-004/assets/trees-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-004/assets/trees-h.png -------------------------------------------------------------------------------- /issue-004/clouds.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Cloud Platforms 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 341 | 342 | 343 | 344 | 345 | -------------------------------------------------------------------------------- /issue-004/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-004/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-005/assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-005/assets/car.png -------------------------------------------------------------------------------- /issue-005/assets/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-005/assets/dot.png -------------------------------------------------------------------------------- /issue-005/assets/maze.json: -------------------------------------------------------------------------------- 1 | { "height":15, 2 | "layers":[ 3 | { 4 | "data":[20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 1, 20, 1, 1, 1, 1, 1, 1, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 20, 1, 20, 20, 20, 20, 20, 20, 1, 20, 20, 20, 20, 20, 20, 20, 1, 20, 20, 1, 20, 1, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 1, 20, 1, 20, 20, 1, 20, 1, 20, 1, 20, 20, 20, 20, 20, 1, 20, 20, 1, 20, 1, 20, 1, 20, 20, 1, 1, 1, 20, 1, 20, 1, 1, 1, 20, 1, 1, 20, 1, 20, 1, 1, 1, 20, 20, 1, 20, 1, 1, 1, 20, 1, 20, 1, 20, 1, 20, 20, 20, 20, 20, 20, 1, 20, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 1, 1, 1, 1, 1, 20, 1, 20, 20, 1, 20, 20, 20, 1, 20, 1, 20, 1, 20, 1, 20, 20, 20, 20, 1, 20, 1, 20, 20, 1, 1, 1, 1, 1, 20, 1, 20, 1, 20, 1, 1, 1, 1, 20, 1, 20, 1, 20, 20, 1, 20, 20, 20, 20, 20, 1, 20, 20, 20, 1, 20, 20, 20, 20, 1, 20, 1, 20, 20, 1, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 1, 1, 1, 20, 1, 20, 20, 1, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 1, 20, 20, 20, 20, 20, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20], 5 | "height":15, 6 | "name":"Tile Layer 1", 7 | "opacity":1, 8 | "type":"tilelayer", 9 | "visible":false, 10 | "width":20, 11 | "x":0, 12 | "y":0 13 | }, 14 | { 15 | "data":[20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 20, 20, 20, 20, 1, 1, 20, 20, 20, 20, 1, 1, 1, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 20, 1, 20, 20, 1, 20, 20, 20, 20, 20, 1, 20, 20, 20, 20, 20, 1, 20, 20, 1, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 1, 20, 20, 1, 20, 20, 20, 20, 20, 20, 20, 1, 20, 20, 20, 20, 1, 20, 1, 20, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 1, 20, 20, 1, 20, 20, 20, 1, 20, 20, 20, 20, 20, 20, 20, 1, 20, 1, 1, 1, 20, 20, 20, 1, 20, 1, 20, 1, 1, 1, 20, 1, 1, 1, 20, 1, 20, 1, 20, 1, 1, 20, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 20, 20, 20, 1, 20, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 1, 1, 1, 20, 20, 1, 20, 1, 1, 1, 20, 1, 1, 1, 20, 1, 1, 1, 1, 1, 20, 20, 1, 20, 20, 1, 20, 20, 1, 20, 20, 20, 1, 20, 20, 20, 20, 20, 20, 1, 20, 1, 1, 20, 20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20], 16 | "height":15, 17 | "name":"Tile Layer 2", 18 | "opacity":1, 19 | "type":"tilelayer", 20 | "visible":true, 21 | "width":20, 22 | "x":0, 23 | "y":0 24 | }], 25 | "orientation":"orthogonal", 26 | "properties": 27 | { 28 | 29 | }, 30 | "tileheight":32, 31 | "tilesets":[ 32 | { 33 | "firstgid":1, 34 | "image":"tiles.png", 35 | "imageheight":320, 36 | "imagewidth":448, 37 | "margin":0, 38 | "name":"tiles", 39 | "properties": 40 | { 41 | 42 | }, 43 | "spacing":0, 44 | "tileheight":32, 45 | "tilewidth":32 46 | }], 47 | "tilewidth":32, 48 | "version":1, 49 | "width":20 50 | } -------------------------------------------------------------------------------- /issue-005/assets/pacman-map.json: -------------------------------------------------------------------------------- 1 | { "height":31, 2 | "layers":[ 3 | { 4 | "data":[1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 10, 6, 7, 11, 12, 12, 13, 7, 11, 12, 12, 12, 13, 7, 8, 9, 7, 11, 12, 12, 12, 13, 7, 11, 12, 12, 13, 7, 10, 6, 7, 8, 14, 14, 9, 7, 8, 14, 14, 14, 9, 7, 8, 9, 7, 8, 14, 14, 14, 9, 7, 8, 14, 14, 9, 7, 10, 6, 7, 15, 16, 16, 17, 7, 15, 16, 16, 16, 17, 7, 15, 17, 7, 15, 16, 16, 16, 17, 7, 15, 16, 16, 17, 7, 10, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 10, 6, 7, 11, 12, 12, 13, 7, 11, 13, 7, 11, 12, 12, 12, 12, 12, 12, 13, 7, 11, 13, 7, 11, 12, 12, 13, 7, 10, 6, 7, 15, 16, 16, 17, 7, 8, 9, 7, 15, 16, 16, 18, 19, 16, 16, 17, 7, 8, 9, 7, 15, 16, 16, 17, 7, 10, 6, 7, 7, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 7, 7, 10, 20, 21, 21, 21, 21, 13, 7, 8, 22, 12, 12, 13, 14, 8, 9, 14, 11, 12, 12, 23, 9, 7, 11, 21, 21, 21, 21, 24, 14, 14, 14, 14, 14, 6, 7, 8, 19, 16, 16, 17, 14, 15, 17, 14, 15, 16, 16, 18, 9, 7, 10, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 6, 7, 8, 9, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 9, 7, 10, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 6, 7, 8, 9, 14, 25, 21, 26, 14, 14, 27, 21, 28, 14, 8, 9, 7, 10, 14, 14, 14, 14, 14, 1, 2, 2, 2, 2, 17, 7, 15, 17, 14, 10, 14, 14, 14, 14, 14, 14, 6, 14, 15, 17, 7, 15, 2, 2, 2, 2, 5, 6, 7, 7, 7, 7, 7, 7, 14, 14, 14, 10, 14, 14, 14, 14, 14, 14, 6, 14, 14, 14, 7, 7, 7, 7, 7, 7, 10, 20, 21, 21, 21, 21, 13, 7, 11, 13, 14, 10, 14, 14, 14, 14, 14, 14, 6, 14, 11, 13, 7, 11, 21, 21, 21, 21, 24, 14, 14, 14, 14, 14, 6, 7, 8, 9, 14, 29, 2, 2, 2, 2, 2, 2, 30, 14, 8, 9, 7, 10, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 6, 7, 8, 9, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 9, 7, 10, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 6, 7, 8, 9, 14, 11, 12, 12, 12, 12, 12, 12, 13, 14, 8, 9, 7, 10, 14, 14, 14, 14, 14, 1, 2, 2, 2, 2, 17, 7, 15, 17, 14, 15, 16, 16, 18, 19, 16, 16, 17, 14, 15, 17, 7, 15, 2, 2, 2, 2, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 10, 6, 7, 11, 12, 12, 13, 7, 11, 12, 12, 12, 13, 7, 8, 9, 7, 11, 12, 12, 12, 13, 7, 11, 12, 12, 13, 7, 10, 6, 7, 15, 16, 18, 9, 7, 15, 16, 16, 16, 17, 7, 15, 17, 7, 15, 16, 16, 16, 17, 7, 8, 19, 16, 17, 7, 10, 6, 7, 7, 7, 8, 9, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9, 7, 7, 7, 10, 31, 12, 13, 7, 8, 9, 7, 11, 13, 7, 11, 12, 12, 12, 12, 12, 12, 13, 7, 11, 13, 7, 8, 9, 7, 11, 12, 32, 33, 16, 17, 7, 15, 17, 7, 8, 9, 7, 15, 16, 16, 18, 19, 16, 16, 17, 7, 8, 9, 7, 15, 17, 7, 15, 16, 34, 6, 7, 7, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 8, 9, 7, 7, 7, 7, 7, 7, 10, 6, 7, 11, 12, 12, 12, 12, 23, 22, 12, 12, 13, 7, 8, 9, 7, 11, 12, 12, 23, 22, 12, 12, 12, 12, 13, 7, 10, 6, 7, 15, 16, 16, 16, 16, 16, 16, 16, 16, 17, 7, 15, 17, 7, 15, 16, 16, 16, 16, 16, 16, 16, 16, 17, 7, 10, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 10, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 24], 5 | "height":31, 6 | "name":"Pacman", 7 | "opacity":1, 8 | "type":"tilelayer", 9 | "visible":true, 10 | "width":28, 11 | "x":0, 12 | "y":0 13 | }], 14 | "orientation":"orthogonal", 15 | "properties": 16 | { 17 | 18 | }, 19 | "tileheight":16, 20 | "tilesets":[ 21 | { 22 | "firstgid":1, 23 | "image":"..\/pacman-tiles.png", 24 | "imageheight":48, 25 | "imagewidth":256, 26 | "margin":0, 27 | "name":"pacman-tiles", 28 | "properties": 29 | { 30 | 31 | }, 32 | "spacing":0, 33 | "tileheight":16, 34 | "tilewidth":16 35 | }], 36 | "tilewidth":16, 37 | "version":1, 38 | "width":28 39 | } -------------------------------------------------------------------------------- /issue-005/assets/pacman-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-005/assets/pacman-tiles.png -------------------------------------------------------------------------------- /issue-005/assets/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-005/assets/pacman.png -------------------------------------------------------------------------------- /issue-005/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-005/assets/tiles.png -------------------------------------------------------------------------------- /issue-005/car.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Move it like Pacman 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 258 | 259 | 260 | 261 | 262 | -------------------------------------------------------------------------------- /issue-005/pacman.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pacman 5 | 6 | 13 | 14 | 15 | 16 | 17 | 260 | 261 | 262 | -------------------------------------------------------------------------------- /issue-005/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-005/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-006/assets/casing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/casing.mp3 -------------------------------------------------------------------------------- /issue-006/assets/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/draw.png -------------------------------------------------------------------------------- /issue-006/assets/fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/fire.mp3 -------------------------------------------------------------------------------- /issue-006/assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/font.png -------------------------------------------------------------------------------- /issue-006/assets/font.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /issue-006/assets/lose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/lose.png -------------------------------------------------------------------------------- /issue-006/assets/photonstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/photonstorm.png -------------------------------------------------------------------------------- /issue-006/assets/preload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/preload.png -------------------------------------------------------------------------------- /issue-006/assets/reload.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/reload.mp3 -------------------------------------------------------------------------------- /issue-006/assets/splat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/splat.mp3 -------------------------------------------------------------------------------- /issue-006/assets/standoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/standoff.png -------------------------------------------------------------------------------- /issue-006/assets/walk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/walk.mp3 -------------------------------------------------------------------------------- /issue-006/assets/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/assets/win.png -------------------------------------------------------------------------------- /issue-006/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-006/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-006/shootout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Shootout 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 393 | 394 | 395 | 396 | 397 | -------------------------------------------------------------------------------- /issue-007/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/back.png -------------------------------------------------------------------------------- /issue-007/assets/bullet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet1.png -------------------------------------------------------------------------------- /issue-007/assets/bullet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet10.png -------------------------------------------------------------------------------- /issue-007/assets/bullet11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet11.png -------------------------------------------------------------------------------- /issue-007/assets/bullet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet2.png -------------------------------------------------------------------------------- /issue-007/assets/bullet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet3.png -------------------------------------------------------------------------------- /issue-007/assets/bullet4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet4.png -------------------------------------------------------------------------------- /issue-007/assets/bullet5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet5.png -------------------------------------------------------------------------------- /issue-007/assets/bullet6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet6.png -------------------------------------------------------------------------------- /issue-007/assets/bullet7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet7.png -------------------------------------------------------------------------------- /issue-007/assets/bullet8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet8.png -------------------------------------------------------------------------------- /issue-007/assets/bullet9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/bullet9.png -------------------------------------------------------------------------------- /issue-007/assets/fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/fore.png -------------------------------------------------------------------------------- /issue-007/assets/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/ship.png -------------------------------------------------------------------------------- /issue-007/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/assets/shmupfont.png -------------------------------------------------------------------------------- /issue-007/assets/shmupfont.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /issue-007/bulletpool.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Bullet Pool 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 696 | 697 | 698 | 699 | 700 | -------------------------------------------------------------------------------- /issue-007/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-007/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-008/aliens.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Path Examples 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 163 | 164 | 165 | 166 | 167 | -------------------------------------------------------------------------------- /issue-008/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-008/assets/arrow.png -------------------------------------------------------------------------------- /issue-008/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-008/assets/shmupfont.png -------------------------------------------------------------------------------- /issue-008/assets/shmupfont.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /issue-008/assets/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-008/assets/ufo.png -------------------------------------------------------------------------------- /issue-008/face.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Path Examples 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 174 | 175 | 176 | 177 | 178 | -------------------------------------------------------------------------------- /issue-008/paths.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Path Examples 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 138 | 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /issue-008/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/46bd83a3984bff84cdb044b1cadf0a7d77a4b783/issue-008/phaser-tips-header1.png --------------------------------------------------------------------------------