-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsefulTutorials.txt
More file actions
12 lines (8 loc) · 979 Bytes
/
UsefulTutorials.txt
File metadata and controls
12 lines (8 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
Tutorials that might be helpful!
Phaser game states tutorial (note that it uses ES6 syntax sugar for classes instead of original JS): https://www.joshmorony.com/phaser-fundamentals-using-states-in-phaser/
-original JS uses prototype inheritance and constructor functions for you to make custom objects
-helpful article on JS prototypes and constructor funcs: https://medium.com/tech-tajawal/javascript-classes-under-the-hood-6b26d2667677
Another great tutorial on Phaser states: https://www.emanueleferonato.com/2014/08/28/phaser-tutorial-understanding-phaser-states/
-helpful to know alongside: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/prototype
Yet another awesome tutorial on Phaser states: http://perplexingtech.weebly.com/game-dev-blog/using-states-in-phaserjs-javascript-game-developement
Phaser tilemaps for platformer games: https://www.joshmorony.com/create-a-running-platformer-game-in-phaser-with-tilemaps/