├── issue-001 ├── assets │ ├── flame.png │ ├── tank.png │ ├── bullet.png │ ├── target.png │ ├── turret.png │ └── background.png ├── phaser-tips-header1.png └── tanks.html ├── issue-002 ├── assets │ ├── flame.png │ ├── land.png │ ├── tank.png │ ├── bullet.png │ ├── target.png │ ├── turret.png │ └── background.png ├── phaser-tips-header1.png └── tanks.html ├── issue-003 ├── assets │ ├── dude.png │ ├── trees.png │ ├── clouds.png │ ├── background.png │ ├── platform.png │ └── ice-platform.png ├── phaser-tips-header1.png ├── platforms.html └── jumpup.html ├── issue-004 ├── assets │ ├── dude.png │ ├── trees-h.png │ ├── clouds-h.png │ ├── platform.png │ └── cloud-platform.png ├── phaser-tips-header1.png └── clouds.html ├── issue-005 ├── assets │ ├── car.png │ ├── dot.png │ ├── tiles.png │ ├── pacman.png │ ├── pacman-tiles.png │ ├── maze.json │ └── pacman-map.json ├── phaser-tips-header1.png ├── car.html └── pacman.html ├── issue-006 ├── assets │ ├── draw.png │ ├── fire.mp3 │ ├── font.png │ ├── lose.png │ ├── splat.mp3 │ ├── walk.mp3 │ ├── win.png │ ├── casing.mp3 │ ├── preload.png │ ├── reload.mp3 │ ├── standoff.png │ ├── photonstorm.png │ └── font.xml ├── phaser-tips-header1.png └── shootout.html ├── issue-007 ├── assets │ ├── back.png │ ├── fore.png │ ├── ship.png │ ├── bullet1.png │ ├── bullet2.png │ ├── bullet3.png │ ├── bullet4.png │ ├── bullet5.png │ ├── bullet6.png │ ├── bullet7.png │ ├── bullet8.png │ ├── bullet9.png │ ├── bullet10.png │ ├── bullet11.png │ ├── shmupfont.png │ └── shmupfont.xml ├── phaser-tips-header1.png └── bulletpool.html └── issue-008 ├── assets ├── arrow.png ├── ufo.png ├── shmupfont.png └── shmupfont.xml ├── phaser-tips-header1.png ├── paths.html ├── aliens.html └── face.html /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-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-003/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/dude.png -------------------------------------------------------------------------------- /issue-003/assets/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/trees.png -------------------------------------------------------------------------------- /issue-004/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/dude.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/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/tiles.png -------------------------------------------------------------------------------- /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/lose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/lose.png -------------------------------------------------------------------------------- /issue-006/assets/splat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/splat.mp3 -------------------------------------------------------------------------------- /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-007/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/back.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-008/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/assets/arrow.png -------------------------------------------------------------------------------- /issue-008/assets/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/assets/ufo.png -------------------------------------------------------------------------------- /issue-001/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/bullet.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-002/assets/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/bullet.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-003/assets/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/clouds.png -------------------------------------------------------------------------------- /issue-004/assets/trees-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/trees-h.png -------------------------------------------------------------------------------- /issue-005/assets/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/pacman.png -------------------------------------------------------------------------------- /issue-006/assets/casing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/casing.mp3 -------------------------------------------------------------------------------- /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-007/assets/bullet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/bullet1.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-001/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/assets/background.png -------------------------------------------------------------------------------- /issue-002/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/assets/background.png -------------------------------------------------------------------------------- /issue-003/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/background.png -------------------------------------------------------------------------------- /issue-003/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/assets/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/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/platform.png -------------------------------------------------------------------------------- /issue-006/assets/standoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/standoff.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/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/assets/shmupfont.png -------------------------------------------------------------------------------- /issue-008/assets/shmupfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/assets/shmupfont.png -------------------------------------------------------------------------------- /issue-001/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-001/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-002/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-002/phaser-tips-header1.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/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-003/phaser-tips-header1.png -------------------------------------------------------------------------------- /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/pacman-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-005/assets/pacman-tiles.png -------------------------------------------------------------------------------- /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/photonstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/assets/photonstorm.png -------------------------------------------------------------------------------- /issue-006/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-006/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-007/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-007/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-008/phaser-tips-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-008/phaser-tips-header1.png -------------------------------------------------------------------------------- /issue-004/assets/cloud-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-coding-tips/HEAD/issue-004/assets/cloud-platform.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-008/paths.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
140 |
141 |
142 |
--------------------------------------------------------------------------------
/issue-008/aliens.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
165 |
166 |
167 |
--------------------------------------------------------------------------------
/issue-008/face.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
176 |
177 |
178 |
--------------------------------------------------------------------------------
/issue-003/platforms.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
171 |
172 |
173 |
--------------------------------------------------------------------------------
/issue-003/jumpup.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
220 |
221 |
222 |
--------------------------------------------------------------------------------
/issue-006/assets/font.xml:
--------------------------------------------------------------------------------
1 |
2 |
231 |
232 |
233 |
--------------------------------------------------------------------------------
/issue-005/car.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
260 |
261 |
262 |
--------------------------------------------------------------------------------
/issue-005/pacman.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
291 |
292 |
293 |
--------------------------------------------------------------------------------
/issue-006/shootout.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
395 |
396 |
397 |
--------------------------------------------------------------------------------
/issue-004/clouds.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
343 |
344 |
345 |
--------------------------------------------------------------------------------
/issue-007/bulletpool.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
698 |
699 |
700 |
--------------------------------------------------------------------------------