├── .gitignore ├── .vscode └── settings.json ├── README.md ├── examples ├── post-1 │ ├── 00-phaser-3-template │ │ ├── index.html │ │ └── index.js │ ├── 01-array │ │ ├── index.html │ │ └── index.js │ ├── 02-csv │ │ ├── index.html │ │ └── index.js │ ├── 03-csv-camera │ │ ├── index.html │ │ └── index.js │ ├── 04-tiled │ │ ├── index.html │ │ └── index.js │ ├── 05-physics │ │ ├── index.html │ │ └── index.js │ └── assets │ │ ├── atlas │ │ ├── atlas.json │ │ ├── atlas.png │ │ ├── atlas.tps │ │ └── tuxemon-misa │ │ │ ├── misa-back-walk.000.png │ │ │ ├── misa-back-walk.001.png │ │ │ ├── misa-back-walk.002.png │ │ │ ├── misa-back-walk.003.png │ │ │ ├── misa-back.png │ │ │ ├── misa-front-walk.000.png │ │ │ ├── misa-front-walk.001.png │ │ │ ├── misa-front-walk.002.png │ │ │ ├── misa-front-walk.003.png │ │ │ ├── misa-front.png │ │ │ ├── misa-left-walk.000.png │ │ │ ├── misa-left-walk.001.png │ │ │ ├── misa-left-walk.002.png │ │ │ ├── misa-left-walk.003.png │ │ │ ├── misa-left.png │ │ │ ├── misa-right-walk.000.png │ │ │ ├── misa-right-walk.001.png │ │ │ ├── misa-right-walk.002.png │ │ │ ├── misa-right-walk.003.png │ │ │ └── misa-right.png │ │ ├── images │ │ └── escheresque_dark.png │ │ ├── sources.md │ │ ├── tilemaps │ │ ├── catastrophi_level3.csv │ │ ├── tuxemon-town.json │ │ └── tuxemon-town.tmx │ │ └── tilesets │ │ ├── catastrophi_tiles_16_blue.png │ │ ├── super-mario-nes-arrow-32px.png │ │ ├── super-mario-nes-arrow.png │ │ ├── super-mario-tiles.png │ │ ├── tuxmon-sample-32px-extruded.png │ │ ├── tuxmon-sample-32px.png │ │ ├── tuxmon-sample.png │ │ └── tuxmon-sample.psd ├── post-2 │ ├── 01-drawing-tiles │ │ ├── index.html │ │ └── js │ │ │ └── index.js │ ├── 02-modules-demo │ │ ├── index.html │ │ └── js │ │ │ ├── index.js │ │ │ ├── platformer-scene.js │ │ │ └── player.js │ ├── 03-drawing-platformer │ │ ├── index.html │ │ └── js │ │ │ ├── index.js │ │ │ ├── mouse-tile-maker.js │ │ │ ├── platformer-scene.js │ │ │ └── player.js │ └── assets │ │ ├── images │ │ ├── 0x72-industrial-spike.png │ │ └── 0x72-industrial-tileset-32px-extruded.png │ │ ├── spritesheets │ │ └── 0x72-industrial-player-32px-extruded.png │ │ ├── tilemaps │ │ ├── platformer-simple.json │ │ ├── platformer-simple.tmx │ │ ├── platformer.json │ │ └── platformer.tmx │ │ └── tilesets │ │ └── 0x72-industrial-tileset-32px-extruded.png ├── post-3 │ ├── 01-dungeon-html │ │ ├── index.html │ │ └── js │ │ │ └── index.js │ ├── 02-dungeon-simple-mapping │ │ ├── index.html │ │ └── js │ │ │ ├── dungeon-scene.js │ │ │ ├── index.js │ │ │ └── player.js │ ├── 03-dungeon-better-mapping │ │ ├── index.html │ │ └── js │ │ │ ├── dungeon-scene.js │ │ │ ├── index.js │ │ │ ├── player.js │ │ │ └── tile-mapping.js │ ├── 04-dungeon-final │ │ ├── index.html │ │ └── js │ │ │ ├── dungeon-scene.js │ │ │ ├── index.js │ │ │ ├── player.js │ │ │ ├── tile-mapping.js │ │ │ └── tilemap-visibility.js │ └── assets │ │ ├── spritesheets │ │ ├── buch-characters-64px-extruded.png │ │ ├── buch-characters-64px.png │ │ └── buch-characters-64px.psd │ │ ├── tilemaps │ │ ├── demo.tmx │ │ └── dungeon.tmx │ │ └── tilesets │ │ └── buch-tileset-48px-extruded.png ├── post-4 │ ├── 01-matter │ │ ├── index.html │ │ └── js │ │ │ └── index.js │ ├── 02-matter-and-phaser │ │ ├── index.html │ │ └── js │ │ │ ├── index.js │ │ │ └── main-scene.js │ ├── 03-mapping-tiles │ │ ├── index.html │ │ └── js │ │ │ ├── index.js │ │ │ └── main-scene.js │ └── assets │ │ ├── atlases │ │ ├── emoji.json │ │ ├── emoji.png │ │ ├── emoji.tps │ │ └── emoji │ │ │ ├── 1f31a.png │ │ │ ├── 1f31d.png │ │ │ ├── 1f31e.png │ │ │ ├── 1f47d.png │ │ │ ├── 1f47f.png │ │ │ ├── 1f4a9.png │ │ │ ├── 1f608.png │ │ │ ├── 1f60d.png │ │ │ ├── 1f61c.png │ │ │ ├── 1f621.png │ │ │ ├── 1f62c.png │ │ │ ├── 1f62d.png │ │ │ ├── 1f62e.png │ │ │ ├── 1f631.png │ │ │ ├── 1f912.png │ │ │ ├── 1f913.png │ │ │ ├── 1f915.png │ │ │ ├── 1f922.png │ │ │ ├── 1f92a.png │ │ │ ├── 1f92c.png │ │ │ ├── 1f92e.png │ │ │ ├── 1f92f.png │ │ │ ├── 1f975.png │ │ │ └── 1f976.png │ │ ├── cursors │ │ ├── pointer.cur │ │ ├── pointer.png │ │ └── pointer.svg │ │ ├── tilemaps │ │ ├── simple-map-collision-mapped.json │ │ ├── simple-map-collision-mapped.tmx │ │ ├── simple-map.json │ │ └── simple-map.tmx │ │ └── tilesets │ │ ├── kenney-tileset-64px-extruded.png │ │ └── kenney-tileset-64px.png └── post-5 │ ├── 01-native-matter-collision-starter │ ├── index.html │ └── js │ │ └── index.js │ ├── 01-native-matter-collision │ ├── index.html │ └── js │ │ └── index.js │ ├── 02-simple-phaser-collisions-starter │ ├── index.html │ └── js │ │ ├── index.js │ │ └── main-scene.js │ ├── 02-simple-phaser-collisions │ ├── index.html │ └── js │ │ ├── index.js │ │ └── main-scene.js │ ├── 03-plugin-setup-starter │ ├── index.html │ └── js │ │ ├── index.js │ │ └── main-scene.js │ ├── 03-plugin-setup │ ├── index.html │ └── js │ │ ├── index.js │ │ └── main-scene.js │ ├── 04-platformer-starter │ ├── index.html │ └── js │ │ ├── create-rotating-platform.js │ │ ├── index.js │ │ ├── main-scene.js │ │ ├── multi-key.js │ │ └── player.js │ ├── 04-platformer-step-1 │ ├── index.html │ └── js │ │ ├── create-rotating-platform.js │ │ ├── index.js │ │ ├── main-scene.js │ │ ├── multi-key.js │ │ └── player.js │ ├── 04-platformer-step-2 │ ├── index.html │ └── js │ │ ├── create-rotating-platform.js │ │ ├── index.js │ │ ├── main-scene.js │ │ ├── multi-key.js │ │ └── player.js │ ├── assets │ ├── atlases │ │ ├── emoji.json │ │ ├── emoji.png │ │ ├── emoji.tps │ │ └── emoji │ │ │ ├── 1f31a.png │ │ │ ├── 1f31d.png │ │ │ ├── 1f31e.png │ │ │ ├── 1f47d.png │ │ │ ├── 1f47f.png │ │ │ ├── 1f4a9.png │ │ │ ├── 1f608.png │ │ │ ├── 1f60d.png │ │ │ ├── 1f61c.png │ │ │ ├── 1f621.png │ │ │ ├── 1f62c.png │ │ │ ├── 1f62d.png │ │ │ ├── 1f62e.png │ │ │ ├── 1f631.png │ │ │ ├── 1f912.png │ │ │ ├── 1f913.png │ │ │ ├── 1f915.png │ │ │ ├── 1f922.png │ │ │ ├── 1f92a.png │ │ │ ├── 1f92c.png │ │ │ ├── 1f92e.png │ │ │ ├── 1f92f.png │ │ │ ├── 1f975.png │ │ │ └── 1f976.png │ ├── cursors │ │ ├── pointer.cur │ │ ├── pointer.png │ │ └── pointer.svg │ ├── images │ │ ├── block.png │ │ ├── chain.png │ │ └── wooden-plank.png │ ├── spritesheets │ │ └── 0x72-industrial-player-32px-extruded.png │ ├── tilemaps │ │ ├── level.json │ │ └── level.tmx │ └── tilesets │ │ ├── kenney-tileset-64px-extruded.png │ │ └── kenney-tileset-64px.png │ └── unused │ └── create-swinging-platform.js ├── licenses.md ├── package.json └── posts ├── outline.md ├── post-1 ├── README.md └── images │ ├── 1-1.png │ ├── debug-colliding-tiles.png │ ├── examples-screenshots │ ├── 00.png │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ └── 05.png │ ├── final-demo │ ├── final-example-demo-optimized.gif │ └── final-example-demo.gif │ ├── loading-from-tiled │ ├── index.js │ ├── loading-from-tiled.gif │ ├── loading-layer.png │ └── loading-tileset.png │ ├── loading-layer.png │ ├── loading-tileset.png │ ├── margin-and-spacing.png │ ├── objects-demo │ ├── objects-demo-optimized.gif │ └── objects-demo.gif │ ├── super-mario-nes-arrow-32px.png │ ├── super-mario-nes-arrow.png │ ├── super-mario-tiles.png │ ├── tile-indices.png │ ├── tiled-demo │ ├── buch-demo.tmx │ ├── buch-tileset-3x.png │ ├── buch-tileset-3x.tsx │ └── buch-tileset.tsx │ ├── tiled-embed-tileset-after.png │ ├── tiled-embed-tileset.png │ ├── tiled-layers-gif │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── tiled-layers-optimized.gif │ └── tiled-layers.gif │ ├── tiled-map-format.png │ └── tiled-set-collision │ ├── tiled-set-collision-optimizied.gif │ ├── tiled-set-collision.gif │ └── tuxemon-town.tmx ├── post-2 ├── README.md └── images │ ├── directory-structure.png │ ├── object-to-sprite │ ├── object-to-sprite-annotated.gif │ ├── object-to-sprite-recording.gif │ ├── object-to-sprite.gif │ └── object-to-sprite.psd │ ├── paint-platformer-demo-optimized.gif │ ├── paint-platformer-demo.gif │ ├── paint-tiles-demo.gif │ ├── paint-with-spike-problem-optimized.gif │ ├── paint-with-spike-problem.gif │ ├── platformer-demo-optimized.gif │ ├── platformer-demo.gif │ ├── spike-sprite-collision-debug.gif │ └── spike-tile-collision-debug.gif ├── post-3 ├── README.md ├── demo │ ├── index.html │ └── js │ │ ├── dungeon-scene.js │ │ ├── index.js │ │ ├── player.js │ │ └── tile-mapping.js ├── images │ ├── buch-tileset-48px.png │ ├── buch-tileset.png │ ├── comparing-layers.png │ ├── divided-tileset.ai │ ├── divided-tileset.svg │ ├── dungeon-floor+walls.png │ ├── dungeon-just-floors.png │ ├── emoji-dungeon-optimized.gif │ ├── emoji-dungeon.gif │ ├── file-structure.png │ ├── final-demo-optimized.gif │ ├── final-demo.gif │ ├── labeled-tileset.png │ ├── mapped-demo.gif │ ├── mapped-demo.png │ ├── small-emoji-dungeon.png │ ├── stuff-demo-optimized.gif │ ├── stuff-demo.gif │ └── tiled-room-demo │ │ ├── tiled-room-demo-faster.mp4 │ │ ├── tiled-room-demo-optimized.gif │ │ ├── tiled-room-demo.gif │ │ └── tiled-room-demo.mp4 └── outline.md ├── post-4 ├── README.md ├── images │ ├── convex-vs-concave.png │ ├── example-1-demo-optimized.gif │ ├── example-1-demo-step-1.gif │ ├── example-1-demo-step-2.gif │ ├── example-1-demo-step-3.gif │ ├── example-1-demo-version │ │ ├── index.html │ │ └── js │ │ │ └── index.js │ ├── example-1-demo.gif │ ├── example-2-bodies.png │ ├── example-2-demo-optimized.gif │ ├── example-2-demo.gif │ ├── example-3-issue.gif │ ├── final-demo-optimize.gif │ ├── final-demo.gif │ ├── mapping-circle-cropped.gif │ ├── mapping-circle.gif │ ├── mapping-collision-editor.png │ ├── mapping-compound-cropped.gif │ ├── mapping-compound.gif │ ├── mapping-convex-polygon-cropped.gif │ ├── mapping-convex-polygon.gif │ ├── mapping-polygon-cropped.gif │ ├── mapping-polygon.gif │ ├── mapping-rectangle.gif │ ├── mapping-small-emoji.gif │ ├── mapping-snapping-settings.png │ ├── mapping-step-1.gif │ ├── mapping-three-shapes.gif │ └── tiled-to-matter-body.png └── outline.md └── post-5 ├── README.md └── images ├── collisions-angry-emoji.gif ├── emoji-love-hate.gif ├── final-demo-smaller-optimized.gif ├── final-demo-smaller.gif ├── final-demo.gif ├── ghost-collision-demo.gif ├── knocking-crates.gif ├── matter-collisions-optimized.gif ├── matter-collisions.gif ├── placing-crates.gif ├── placing-platforms.gif ├── placing-sensors.gif ├── platformer-1.gif ├── platformer-2.gif ├── platformer-3.gif ├── platformer-lava.gif ├── platformer-player.gif ├── player-bodies.png ├── rotating-platform.gif ├── sprite.png └── trigger-emoji.gif /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/README.md -------------------------------------------------------------------------------- /examples/post-1/00-phaser-3-template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/00-phaser-3-template/index.html -------------------------------------------------------------------------------- /examples/post-1/00-phaser-3-template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/00-phaser-3-template/index.js -------------------------------------------------------------------------------- /examples/post-1/01-array/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/01-array/index.html -------------------------------------------------------------------------------- /examples/post-1/01-array/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/01-array/index.js -------------------------------------------------------------------------------- /examples/post-1/02-csv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/02-csv/index.html -------------------------------------------------------------------------------- /examples/post-1/02-csv/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/02-csv/index.js -------------------------------------------------------------------------------- /examples/post-1/03-csv-camera/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/03-csv-camera/index.html -------------------------------------------------------------------------------- /examples/post-1/03-csv-camera/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/03-csv-camera/index.js -------------------------------------------------------------------------------- /examples/post-1/04-tiled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/04-tiled/index.html -------------------------------------------------------------------------------- /examples/post-1/04-tiled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/04-tiled/index.js -------------------------------------------------------------------------------- /examples/post-1/05-physics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/05-physics/index.html -------------------------------------------------------------------------------- /examples/post-1/05-physics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/05-physics/index.js -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/atlas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/atlas.json -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/atlas.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/atlas.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/atlas.tps -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.000.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.001.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.002.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-back-walk.003.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-back.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.000.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.001.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.002.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-front-walk.003.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-front.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.000.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.001.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.002.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-left-walk.003.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-left.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.000.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.001.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.002.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-right-walk.003.png -------------------------------------------------------------------------------- /examples/post-1/assets/atlas/tuxemon-misa/misa-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/atlas/tuxemon-misa/misa-right.png -------------------------------------------------------------------------------- /examples/post-1/assets/images/escheresque_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/images/escheresque_dark.png -------------------------------------------------------------------------------- /examples/post-1/assets/sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/sources.md -------------------------------------------------------------------------------- /examples/post-1/assets/tilemaps/catastrophi_level3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilemaps/catastrophi_level3.csv -------------------------------------------------------------------------------- /examples/post-1/assets/tilemaps/tuxemon-town.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilemaps/tuxemon-town.json -------------------------------------------------------------------------------- /examples/post-1/assets/tilemaps/tuxemon-town.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilemaps/tuxemon-town.tmx -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/catastrophi_tiles_16_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/catastrophi_tiles_16_blue.png -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/super-mario-nes-arrow-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/super-mario-nes-arrow-32px.png -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/super-mario-nes-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/super-mario-nes-arrow.png -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/super-mario-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/super-mario-tiles.png -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/tuxmon-sample-32px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/tuxmon-sample-32px-extruded.png -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/tuxmon-sample-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/tuxmon-sample-32px.png -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/tuxmon-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/tuxmon-sample.png -------------------------------------------------------------------------------- /examples/post-1/assets/tilesets/tuxmon-sample.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-1/assets/tilesets/tuxmon-sample.psd -------------------------------------------------------------------------------- /examples/post-2/01-drawing-tiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/01-drawing-tiles/index.html -------------------------------------------------------------------------------- /examples/post-2/01-drawing-tiles/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/01-drawing-tiles/js/index.js -------------------------------------------------------------------------------- /examples/post-2/02-modules-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/02-modules-demo/index.html -------------------------------------------------------------------------------- /examples/post-2/02-modules-demo/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/02-modules-demo/js/index.js -------------------------------------------------------------------------------- /examples/post-2/02-modules-demo/js/platformer-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/02-modules-demo/js/platformer-scene.js -------------------------------------------------------------------------------- /examples/post-2/02-modules-demo/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/02-modules-demo/js/player.js -------------------------------------------------------------------------------- /examples/post-2/03-drawing-platformer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/03-drawing-platformer/index.html -------------------------------------------------------------------------------- /examples/post-2/03-drawing-platformer/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/03-drawing-platformer/js/index.js -------------------------------------------------------------------------------- /examples/post-2/03-drawing-platformer/js/mouse-tile-maker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/03-drawing-platformer/js/mouse-tile-maker.js -------------------------------------------------------------------------------- /examples/post-2/03-drawing-platformer/js/platformer-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/03-drawing-platformer/js/platformer-scene.js -------------------------------------------------------------------------------- /examples/post-2/03-drawing-platformer/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/03-drawing-platformer/js/player.js -------------------------------------------------------------------------------- /examples/post-2/assets/images/0x72-industrial-spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/images/0x72-industrial-spike.png -------------------------------------------------------------------------------- /examples/post-2/assets/images/0x72-industrial-tileset-32px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/images/0x72-industrial-tileset-32px-extruded.png -------------------------------------------------------------------------------- /examples/post-2/assets/spritesheets/0x72-industrial-player-32px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/spritesheets/0x72-industrial-player-32px-extruded.png -------------------------------------------------------------------------------- /examples/post-2/assets/tilemaps/platformer-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/tilemaps/platformer-simple.json -------------------------------------------------------------------------------- /examples/post-2/assets/tilemaps/platformer-simple.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/tilemaps/platformer-simple.tmx -------------------------------------------------------------------------------- /examples/post-2/assets/tilemaps/platformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/tilemaps/platformer.json -------------------------------------------------------------------------------- /examples/post-2/assets/tilemaps/platformer.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/tilemaps/platformer.tmx -------------------------------------------------------------------------------- /examples/post-2/assets/tilesets/0x72-industrial-tileset-32px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-2/assets/tilesets/0x72-industrial-tileset-32px-extruded.png -------------------------------------------------------------------------------- /examples/post-3/01-dungeon-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/01-dungeon-html/index.html -------------------------------------------------------------------------------- /examples/post-3/01-dungeon-html/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/01-dungeon-html/js/index.js -------------------------------------------------------------------------------- /examples/post-3/02-dungeon-simple-mapping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/02-dungeon-simple-mapping/index.html -------------------------------------------------------------------------------- /examples/post-3/02-dungeon-simple-mapping/js/dungeon-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/02-dungeon-simple-mapping/js/dungeon-scene.js -------------------------------------------------------------------------------- /examples/post-3/02-dungeon-simple-mapping/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/02-dungeon-simple-mapping/js/index.js -------------------------------------------------------------------------------- /examples/post-3/02-dungeon-simple-mapping/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/02-dungeon-simple-mapping/js/player.js -------------------------------------------------------------------------------- /examples/post-3/03-dungeon-better-mapping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/03-dungeon-better-mapping/index.html -------------------------------------------------------------------------------- /examples/post-3/03-dungeon-better-mapping/js/dungeon-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/03-dungeon-better-mapping/js/dungeon-scene.js -------------------------------------------------------------------------------- /examples/post-3/03-dungeon-better-mapping/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/03-dungeon-better-mapping/js/index.js -------------------------------------------------------------------------------- /examples/post-3/03-dungeon-better-mapping/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/03-dungeon-better-mapping/js/player.js -------------------------------------------------------------------------------- /examples/post-3/03-dungeon-better-mapping/js/tile-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/03-dungeon-better-mapping/js/tile-mapping.js -------------------------------------------------------------------------------- /examples/post-3/04-dungeon-final/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/04-dungeon-final/index.html -------------------------------------------------------------------------------- /examples/post-3/04-dungeon-final/js/dungeon-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/04-dungeon-final/js/dungeon-scene.js -------------------------------------------------------------------------------- /examples/post-3/04-dungeon-final/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/04-dungeon-final/js/index.js -------------------------------------------------------------------------------- /examples/post-3/04-dungeon-final/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/04-dungeon-final/js/player.js -------------------------------------------------------------------------------- /examples/post-3/04-dungeon-final/js/tile-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/04-dungeon-final/js/tile-mapping.js -------------------------------------------------------------------------------- /examples/post-3/04-dungeon-final/js/tilemap-visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/04-dungeon-final/js/tilemap-visibility.js -------------------------------------------------------------------------------- /examples/post-3/assets/spritesheets/buch-characters-64px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/assets/spritesheets/buch-characters-64px-extruded.png -------------------------------------------------------------------------------- /examples/post-3/assets/spritesheets/buch-characters-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/assets/spritesheets/buch-characters-64px.png -------------------------------------------------------------------------------- /examples/post-3/assets/spritesheets/buch-characters-64px.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/assets/spritesheets/buch-characters-64px.psd -------------------------------------------------------------------------------- /examples/post-3/assets/tilemaps/demo.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/assets/tilemaps/demo.tmx -------------------------------------------------------------------------------- /examples/post-3/assets/tilemaps/dungeon.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/assets/tilemaps/dungeon.tmx -------------------------------------------------------------------------------- /examples/post-3/assets/tilesets/buch-tileset-48px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-3/assets/tilesets/buch-tileset-48px-extruded.png -------------------------------------------------------------------------------- /examples/post-4/01-matter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/01-matter/index.html -------------------------------------------------------------------------------- /examples/post-4/01-matter/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/01-matter/js/index.js -------------------------------------------------------------------------------- /examples/post-4/02-matter-and-phaser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/02-matter-and-phaser/index.html -------------------------------------------------------------------------------- /examples/post-4/02-matter-and-phaser/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/02-matter-and-phaser/js/index.js -------------------------------------------------------------------------------- /examples/post-4/02-matter-and-phaser/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/02-matter-and-phaser/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-4/03-mapping-tiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/03-mapping-tiles/index.html -------------------------------------------------------------------------------- /examples/post-4/03-mapping-tiles/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/03-mapping-tiles/js/index.js -------------------------------------------------------------------------------- /examples/post-4/03-mapping-tiles/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/03-mapping-tiles/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji.json -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji.tps -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f31a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f31a.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f31d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f31d.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f31e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f31e.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f47d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f47d.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f47f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f47f.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f4a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f4a9.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f608.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f608.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f60d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f60d.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f61c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f61c.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f621.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f62c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f62c.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f62d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f62d.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f62e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f62e.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f631.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f631.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f912.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f913.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f913.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f915.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f915.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f922.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f92a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f92a.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f92c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f92c.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f92e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f92e.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f92f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f92f.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f975.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f975.png -------------------------------------------------------------------------------- /examples/post-4/assets/atlases/emoji/1f976.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/atlases/emoji/1f976.png -------------------------------------------------------------------------------- /examples/post-4/assets/cursors/pointer.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/cursors/pointer.cur -------------------------------------------------------------------------------- /examples/post-4/assets/cursors/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/cursors/pointer.png -------------------------------------------------------------------------------- /examples/post-4/assets/cursors/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/cursors/pointer.svg -------------------------------------------------------------------------------- /examples/post-4/assets/tilemaps/simple-map-collision-mapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/tilemaps/simple-map-collision-mapped.json -------------------------------------------------------------------------------- /examples/post-4/assets/tilemaps/simple-map-collision-mapped.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/tilemaps/simple-map-collision-mapped.tmx -------------------------------------------------------------------------------- /examples/post-4/assets/tilemaps/simple-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/tilemaps/simple-map.json -------------------------------------------------------------------------------- /examples/post-4/assets/tilemaps/simple-map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/tilemaps/simple-map.tmx -------------------------------------------------------------------------------- /examples/post-4/assets/tilesets/kenney-tileset-64px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/tilesets/kenney-tileset-64px-extruded.png -------------------------------------------------------------------------------- /examples/post-4/assets/tilesets/kenney-tileset-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-4/assets/tilesets/kenney-tileset-64px.png -------------------------------------------------------------------------------- /examples/post-5/01-native-matter-collision-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/01-native-matter-collision-starter/index.html -------------------------------------------------------------------------------- /examples/post-5/01-native-matter-collision-starter/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/01-native-matter-collision-starter/js/index.js -------------------------------------------------------------------------------- /examples/post-5/01-native-matter-collision/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/01-native-matter-collision/index.html -------------------------------------------------------------------------------- /examples/post-5/01-native-matter-collision/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/01-native-matter-collision/js/index.js -------------------------------------------------------------------------------- /examples/post-5/02-simple-phaser-collisions-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/02-simple-phaser-collisions-starter/index.html -------------------------------------------------------------------------------- /examples/post-5/02-simple-phaser-collisions-starter/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/02-simple-phaser-collisions-starter/js/index.js -------------------------------------------------------------------------------- /examples/post-5/02-simple-phaser-collisions-starter/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/02-simple-phaser-collisions-starter/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-5/02-simple-phaser-collisions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/02-simple-phaser-collisions/index.html -------------------------------------------------------------------------------- /examples/post-5/02-simple-phaser-collisions/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/02-simple-phaser-collisions/js/index.js -------------------------------------------------------------------------------- /examples/post-5/02-simple-phaser-collisions/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/02-simple-phaser-collisions/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-5/03-plugin-setup-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/03-plugin-setup-starter/index.html -------------------------------------------------------------------------------- /examples/post-5/03-plugin-setup-starter/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/03-plugin-setup-starter/js/index.js -------------------------------------------------------------------------------- /examples/post-5/03-plugin-setup-starter/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/03-plugin-setup-starter/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-5/03-plugin-setup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/03-plugin-setup/index.html -------------------------------------------------------------------------------- /examples/post-5/03-plugin-setup/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/03-plugin-setup/js/index.js -------------------------------------------------------------------------------- /examples/post-5/03-plugin-setup/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/03-plugin-setup/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-starter/index.html -------------------------------------------------------------------------------- /examples/post-5/04-platformer-starter/js/create-rotating-platform.js: -------------------------------------------------------------------------------- 1 | export default function createRotatingPlatform(scene, x, y, numTiles = 5) {} 2 | -------------------------------------------------------------------------------- /examples/post-5/04-platformer-starter/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-starter/js/index.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-starter/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-starter/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-starter/js/multi-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-starter/js/multi-key.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-starter/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-starter/js/player.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-1/index.html -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-1/js/create-rotating-platform.js: -------------------------------------------------------------------------------- 1 | export default function createRotatingPlatform(scene, x, y, numTiles = 5) {} 2 | -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-1/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-1/js/index.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-1/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-1/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-1/js/multi-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-1/js/multi-key.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-1/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-1/js/player.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-2/index.html -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-2/js/create-rotating-platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-2/js/create-rotating-platform.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-2/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-2/js/index.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-2/js/main-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-2/js/main-scene.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-2/js/multi-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-2/js/multi-key.js -------------------------------------------------------------------------------- /examples/post-5/04-platformer-step-2/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/04-platformer-step-2/js/player.js -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji.json -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji.tps -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f31a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f31a.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f31d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f31d.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f31e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f31e.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f47d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f47d.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f47f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f47f.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f4a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f4a9.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f608.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f608.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f60d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f60d.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f61c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f61c.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f621.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f62c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f62c.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f62d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f62d.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f62e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f62e.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f631.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f631.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f912.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f913.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f913.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f915.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f915.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f922.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f92a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f92a.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f92c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f92c.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f92e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f92e.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f92f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f92f.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f975.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f975.png -------------------------------------------------------------------------------- /examples/post-5/assets/atlases/emoji/1f976.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/atlases/emoji/1f976.png -------------------------------------------------------------------------------- /examples/post-5/assets/cursors/pointer.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/cursors/pointer.cur -------------------------------------------------------------------------------- /examples/post-5/assets/cursors/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/cursors/pointer.png -------------------------------------------------------------------------------- /examples/post-5/assets/cursors/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/cursors/pointer.svg -------------------------------------------------------------------------------- /examples/post-5/assets/images/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/images/block.png -------------------------------------------------------------------------------- /examples/post-5/assets/images/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/images/chain.png -------------------------------------------------------------------------------- /examples/post-5/assets/images/wooden-plank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/images/wooden-plank.png -------------------------------------------------------------------------------- /examples/post-5/assets/spritesheets/0x72-industrial-player-32px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/spritesheets/0x72-industrial-player-32px-extruded.png -------------------------------------------------------------------------------- /examples/post-5/assets/tilemaps/level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/tilemaps/level.json -------------------------------------------------------------------------------- /examples/post-5/assets/tilemaps/level.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/tilemaps/level.tmx -------------------------------------------------------------------------------- /examples/post-5/assets/tilesets/kenney-tileset-64px-extruded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/tilesets/kenney-tileset-64px-extruded.png -------------------------------------------------------------------------------- /examples/post-5/assets/tilesets/kenney-tileset-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/assets/tilesets/kenney-tileset-64px.png -------------------------------------------------------------------------------- /examples/post-5/unused/create-swinging-platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/examples/post-5/unused/create-swinging-platform.js -------------------------------------------------------------------------------- /licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/licenses.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/package.json -------------------------------------------------------------------------------- /posts/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/outline.md -------------------------------------------------------------------------------- /posts/post-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/README.md -------------------------------------------------------------------------------- /posts/post-1/images/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/1-1.png -------------------------------------------------------------------------------- /posts/post-1/images/debug-colliding-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/debug-colliding-tiles.png -------------------------------------------------------------------------------- /posts/post-1/images/examples-screenshots/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/examples-screenshots/00.png -------------------------------------------------------------------------------- /posts/post-1/images/examples-screenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/examples-screenshots/01.png -------------------------------------------------------------------------------- /posts/post-1/images/examples-screenshots/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/examples-screenshots/02.png -------------------------------------------------------------------------------- /posts/post-1/images/examples-screenshots/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/examples-screenshots/03.png -------------------------------------------------------------------------------- /posts/post-1/images/examples-screenshots/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/examples-screenshots/04.png -------------------------------------------------------------------------------- /posts/post-1/images/examples-screenshots/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/examples-screenshots/05.png -------------------------------------------------------------------------------- /posts/post-1/images/final-demo/final-example-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/final-demo/final-example-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-1/images/final-demo/final-example-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/final-demo/final-example-demo.gif -------------------------------------------------------------------------------- /posts/post-1/images/loading-from-tiled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/loading-from-tiled/index.js -------------------------------------------------------------------------------- /posts/post-1/images/loading-from-tiled/loading-from-tiled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/loading-from-tiled/loading-from-tiled.gif -------------------------------------------------------------------------------- /posts/post-1/images/loading-from-tiled/loading-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/loading-from-tiled/loading-layer.png -------------------------------------------------------------------------------- /posts/post-1/images/loading-from-tiled/loading-tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/loading-from-tiled/loading-tileset.png -------------------------------------------------------------------------------- /posts/post-1/images/loading-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/loading-layer.png -------------------------------------------------------------------------------- /posts/post-1/images/loading-tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/loading-tileset.png -------------------------------------------------------------------------------- /posts/post-1/images/margin-and-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/margin-and-spacing.png -------------------------------------------------------------------------------- /posts/post-1/images/objects-demo/objects-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/objects-demo/objects-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-1/images/objects-demo/objects-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/objects-demo/objects-demo.gif -------------------------------------------------------------------------------- /posts/post-1/images/super-mario-nes-arrow-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/super-mario-nes-arrow-32px.png -------------------------------------------------------------------------------- /posts/post-1/images/super-mario-nes-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/super-mario-nes-arrow.png -------------------------------------------------------------------------------- /posts/post-1/images/super-mario-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/super-mario-tiles.png -------------------------------------------------------------------------------- /posts/post-1/images/tile-indices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tile-indices.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-demo/buch-demo.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-demo/buch-demo.tmx -------------------------------------------------------------------------------- /posts/post-1/images/tiled-demo/buch-tileset-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-demo/buch-tileset-3x.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-demo/buch-tileset-3x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-demo/buch-tileset-3x.tsx -------------------------------------------------------------------------------- /posts/post-1/images/tiled-demo/buch-tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-demo/buch-tileset.tsx -------------------------------------------------------------------------------- /posts/post-1/images/tiled-embed-tileset-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-embed-tileset-after.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-embed-tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-embed-tileset.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/1.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/2.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/3.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/4.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/5.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/6.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/7.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/tiled-layers-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/tiled-layers-optimized.gif -------------------------------------------------------------------------------- /posts/post-1/images/tiled-layers-gif/tiled-layers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-layers-gif/tiled-layers.gif -------------------------------------------------------------------------------- /posts/post-1/images/tiled-map-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-map-format.png -------------------------------------------------------------------------------- /posts/post-1/images/tiled-set-collision/tiled-set-collision-optimizied.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-set-collision/tiled-set-collision-optimizied.gif -------------------------------------------------------------------------------- /posts/post-1/images/tiled-set-collision/tiled-set-collision.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-set-collision/tiled-set-collision.gif -------------------------------------------------------------------------------- /posts/post-1/images/tiled-set-collision/tuxemon-town.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-1/images/tiled-set-collision/tuxemon-town.tmx -------------------------------------------------------------------------------- /posts/post-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/README.md -------------------------------------------------------------------------------- /posts/post-2/images/directory-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/directory-structure.png -------------------------------------------------------------------------------- /posts/post-2/images/object-to-sprite/object-to-sprite-annotated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/object-to-sprite/object-to-sprite-annotated.gif -------------------------------------------------------------------------------- /posts/post-2/images/object-to-sprite/object-to-sprite-recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/object-to-sprite/object-to-sprite-recording.gif -------------------------------------------------------------------------------- /posts/post-2/images/object-to-sprite/object-to-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/object-to-sprite/object-to-sprite.gif -------------------------------------------------------------------------------- /posts/post-2/images/object-to-sprite/object-to-sprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/object-to-sprite/object-to-sprite.psd -------------------------------------------------------------------------------- /posts/post-2/images/paint-platformer-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/paint-platformer-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-2/images/paint-platformer-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/paint-platformer-demo.gif -------------------------------------------------------------------------------- /posts/post-2/images/paint-tiles-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/paint-tiles-demo.gif -------------------------------------------------------------------------------- /posts/post-2/images/paint-with-spike-problem-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/paint-with-spike-problem-optimized.gif -------------------------------------------------------------------------------- /posts/post-2/images/paint-with-spike-problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/paint-with-spike-problem.gif -------------------------------------------------------------------------------- /posts/post-2/images/platformer-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/platformer-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-2/images/platformer-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/platformer-demo.gif -------------------------------------------------------------------------------- /posts/post-2/images/spike-sprite-collision-debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/spike-sprite-collision-debug.gif -------------------------------------------------------------------------------- /posts/post-2/images/spike-tile-collision-debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-2/images/spike-tile-collision-debug.gif -------------------------------------------------------------------------------- /posts/post-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/README.md -------------------------------------------------------------------------------- /posts/post-3/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/demo/index.html -------------------------------------------------------------------------------- /posts/post-3/demo/js/dungeon-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/demo/js/dungeon-scene.js -------------------------------------------------------------------------------- /posts/post-3/demo/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/demo/js/index.js -------------------------------------------------------------------------------- /posts/post-3/demo/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/demo/js/player.js -------------------------------------------------------------------------------- /posts/post-3/demo/js/tile-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/demo/js/tile-mapping.js -------------------------------------------------------------------------------- /posts/post-3/images/buch-tileset-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/buch-tileset-48px.png -------------------------------------------------------------------------------- /posts/post-3/images/buch-tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/buch-tileset.png -------------------------------------------------------------------------------- /posts/post-3/images/comparing-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/comparing-layers.png -------------------------------------------------------------------------------- /posts/post-3/images/divided-tileset.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/divided-tileset.ai -------------------------------------------------------------------------------- /posts/post-3/images/divided-tileset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/divided-tileset.svg -------------------------------------------------------------------------------- /posts/post-3/images/dungeon-floor+walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/dungeon-floor+walls.png -------------------------------------------------------------------------------- /posts/post-3/images/dungeon-just-floors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/dungeon-just-floors.png -------------------------------------------------------------------------------- /posts/post-3/images/emoji-dungeon-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/emoji-dungeon-optimized.gif -------------------------------------------------------------------------------- /posts/post-3/images/emoji-dungeon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/emoji-dungeon.gif -------------------------------------------------------------------------------- /posts/post-3/images/file-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/file-structure.png -------------------------------------------------------------------------------- /posts/post-3/images/final-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/final-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-3/images/final-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/final-demo.gif -------------------------------------------------------------------------------- /posts/post-3/images/labeled-tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/labeled-tileset.png -------------------------------------------------------------------------------- /posts/post-3/images/mapped-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/mapped-demo.gif -------------------------------------------------------------------------------- /posts/post-3/images/mapped-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/mapped-demo.png -------------------------------------------------------------------------------- /posts/post-3/images/small-emoji-dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/small-emoji-dungeon.png -------------------------------------------------------------------------------- /posts/post-3/images/stuff-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/stuff-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-3/images/stuff-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/stuff-demo.gif -------------------------------------------------------------------------------- /posts/post-3/images/tiled-room-demo/tiled-room-demo-faster.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/tiled-room-demo/tiled-room-demo-faster.mp4 -------------------------------------------------------------------------------- /posts/post-3/images/tiled-room-demo/tiled-room-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/tiled-room-demo/tiled-room-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-3/images/tiled-room-demo/tiled-room-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/tiled-room-demo/tiled-room-demo.gif -------------------------------------------------------------------------------- /posts/post-3/images/tiled-room-demo/tiled-room-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/images/tiled-room-demo/tiled-room-demo.mp4 -------------------------------------------------------------------------------- /posts/post-3/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-3/outline.md -------------------------------------------------------------------------------- /posts/post-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/README.md -------------------------------------------------------------------------------- /posts/post-4/images/convex-vs-concave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/convex-vs-concave.png -------------------------------------------------------------------------------- /posts/post-4/images/example-1-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-1-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-4/images/example-1-demo-step-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-1-demo-step-1.gif -------------------------------------------------------------------------------- /posts/post-4/images/example-1-demo-step-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-1-demo-step-2.gif -------------------------------------------------------------------------------- /posts/post-4/images/example-1-demo-step-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-1-demo-step-3.gif -------------------------------------------------------------------------------- /posts/post-4/images/example-1-demo-version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-1-demo-version/index.html -------------------------------------------------------------------------------- /posts/post-4/images/example-1-demo-version/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-1-demo-version/js/index.js -------------------------------------------------------------------------------- /posts/post-4/images/example-1-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-1-demo.gif -------------------------------------------------------------------------------- /posts/post-4/images/example-2-bodies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-2-bodies.png -------------------------------------------------------------------------------- /posts/post-4/images/example-2-demo-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-2-demo-optimized.gif -------------------------------------------------------------------------------- /posts/post-4/images/example-2-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-2-demo.gif -------------------------------------------------------------------------------- /posts/post-4/images/example-3-issue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/example-3-issue.gif -------------------------------------------------------------------------------- /posts/post-4/images/final-demo-optimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/final-demo-optimize.gif -------------------------------------------------------------------------------- /posts/post-4/images/final-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/final-demo.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-circle-cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-circle-cropped.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-circle.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-collision-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-collision-editor.png -------------------------------------------------------------------------------- /posts/post-4/images/mapping-compound-cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-compound-cropped.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-compound.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-compound.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-convex-polygon-cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-convex-polygon-cropped.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-convex-polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-convex-polygon.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-polygon-cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-polygon-cropped.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-polygon.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-rectangle.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-small-emoji.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-small-emoji.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-snapping-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-snapping-settings.png -------------------------------------------------------------------------------- /posts/post-4/images/mapping-step-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-step-1.gif -------------------------------------------------------------------------------- /posts/post-4/images/mapping-three-shapes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/mapping-three-shapes.gif -------------------------------------------------------------------------------- /posts/post-4/images/tiled-to-matter-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/images/tiled-to-matter-body.png -------------------------------------------------------------------------------- /posts/post-4/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-4/outline.md -------------------------------------------------------------------------------- /posts/post-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/README.md -------------------------------------------------------------------------------- /posts/post-5/images/collisions-angry-emoji.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/collisions-angry-emoji.gif -------------------------------------------------------------------------------- /posts/post-5/images/emoji-love-hate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/emoji-love-hate.gif -------------------------------------------------------------------------------- /posts/post-5/images/final-demo-smaller-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/final-demo-smaller-optimized.gif -------------------------------------------------------------------------------- /posts/post-5/images/final-demo-smaller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/final-demo-smaller.gif -------------------------------------------------------------------------------- /posts/post-5/images/final-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/final-demo.gif -------------------------------------------------------------------------------- /posts/post-5/images/ghost-collision-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/ghost-collision-demo.gif -------------------------------------------------------------------------------- /posts/post-5/images/knocking-crates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/knocking-crates.gif -------------------------------------------------------------------------------- /posts/post-5/images/matter-collisions-optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/matter-collisions-optimized.gif -------------------------------------------------------------------------------- /posts/post-5/images/matter-collisions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/matter-collisions.gif -------------------------------------------------------------------------------- /posts/post-5/images/placing-crates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/placing-crates.gif -------------------------------------------------------------------------------- /posts/post-5/images/placing-platforms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/placing-platforms.gif -------------------------------------------------------------------------------- /posts/post-5/images/placing-sensors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/placing-sensors.gif -------------------------------------------------------------------------------- /posts/post-5/images/platformer-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/platformer-1.gif -------------------------------------------------------------------------------- /posts/post-5/images/platformer-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/platformer-2.gif -------------------------------------------------------------------------------- /posts/post-5/images/platformer-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/platformer-3.gif -------------------------------------------------------------------------------- /posts/post-5/images/platformer-lava.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/platformer-lava.gif -------------------------------------------------------------------------------- /posts/post-5/images/platformer-player.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/platformer-player.gif -------------------------------------------------------------------------------- /posts/post-5/images/player-bodies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/player-bodies.png -------------------------------------------------------------------------------- /posts/post-5/images/rotating-platform.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/rotating-platform.gif -------------------------------------------------------------------------------- /posts/post-5/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/sprite.png -------------------------------------------------------------------------------- /posts/post-5/images/trigger-emoji.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikewesthad/phaser-3-tilemap-blog-posts/HEAD/posts/post-5/images/trigger-emoji.gif --------------------------------------------------------------------------------