https://github.com/mikewesthad/phaser-3-tilemap-blog-posts
A tutorial series on the ways you can build modular game worlds using tilemaps in Phaser 3.
https://github.com/mikewesthad/phaser-3-tilemap-blog-posts
Last synced: 2 months ago
JSON representation
A tutorial series on the ways you can build modular game worlds using tilemaps in Phaser 3.
- Host: GitHub
- URL: https://github.com/mikewesthad/phaser-3-tilemap-blog-posts
- Owner: mikewesthad
- Created: 2018-07-04T02:39:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-02T17:42:56.000Z (over 1 year ago)
- Last Synced: 2025-03-29T17:09:34.531Z (2 months ago)
- Language: JavaScript
- Homepage: https://www.mikewesthad.com/blog
- Size: 61.1 MB
- Stars: 275
- Watchers: 12
- Forks: 232
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: licenses.md
Awesome Lists containing this project
README
# Tilemaps in Phaser 3
A tutorial series on the ways you can build modular game worlds using tilemaps in Phaser 3. It has been updated as of 8/13/21 to use the latest version of Phaser v3.55.2 (and other libraries).
- Post #1 Static Maps: [link](https://medium.com/@michaelwesthadley/modular-game-worlds-in-phaser-3-tilemaps-1-958fc7e6bbd6)
- Post #2 Dynamic Platformer: [link](https://medium.com/@michaelwesthadley/modular-game-worlds-in-phaser-3-tilemaps-2-dynamic-platformer-3d68e73d494a)
- Post #3 Procedural Dungeon: [link](https://medium.com/@michaelwesthadley/modular-game-worlds-in-phaser-3-tilemaps-3-procedural-dungeon-3bc19b841cd)
- Post #4 Meet Matter: [link](https://medium.com/@michaelwesthadley/modular-game-worlds-in-phaser-3-tilemaps-4-meet-matter-js-abf4dfa65ca1)
- Post #5 Matter Physics Platformer: [link](https://medium.com/@michaelwesthadley/modular-game-worlds-in-phaser-3-tilemaps-5-matter-physics-platformer-d14d1f614557)## Running Examples Locally
Looking to run the examples locally?
Clone or download the repository. Make sure you have [node](https://nodejs.org/en/) installed. Open a terminal in the repository folder and run:```
npm install
```This will install the needed dependencies. Then you can run:
```
npm run serve
```This will open up a browser with the examples served up.
## License & Attribution
See [licenses.md](./licenses.md) for the licenses & attributions for the various components of this repository - the game assets, the code examples and the blog posts themselves.