PhaserJS

Clicker Jam Summer 2022 Game Jam Video Dev Log Day 4

This week I decided to participate in the Clicker Jam Summer 2022 game jam. The goal of this game jam is to create an idle clicker game in 7 days. For this game jam I decided to share my daily updates via video dev logs. If you are interested in checking out the game that I am making, you can see the game on Itchio here: Idle Programmer. You can watch my video dev log here on YouTub: Clicker Jam Summer 2022 - Dev Log - Day 4

Clicker Jam Summer 2022 Game Jam Video Dev Log Day 3

This week I decided to participate in the Clicker Jam Summer 2022 game jam. The goal of this game jam is to create an idle clicker game in 7 days. For this game jam I decided to share my daily updates via video dev logs. If you are interested in checking out the game that I am making, you can see the game on Itchio here: Idle Programmer. You can watch my video dev log here on YouTub: Clicker Jam Summer 2022 - Dev Log - Day 3

Clicker Jam Summer 2022 Game Jam Video Dev Log Day 2

This week I decided to participate in the Clicker Jam Summer 2022 game jam. The goal of this game jam is to create an idle clicker game in 7 days. For this game jam I decided to share my daily updates via video dev logs. If you are interested in checking out the game that I am making, you can see the game on Itchio here: Idle Programmer. You can watch my video dev log here on YouTub: Clicker Jam Summer 2022 - Dev Log - Day 2

Clicker Jam Summer 2022 Game Jam Video Dev Log Day 1

This week I decided to participate in the Clicker Jam Summer 2022 game jam. The goal of this game jam is to create an idle clicker game in 7 days. For this game jam I decided to share my daily updates via video dev logs. If you are interested in checking out the game that I am making, you can see the game on Itchio here: Idle Programmer. You can watch my video dev log here on YouTub: Clicker Jam Summer 2022 - Dev Log - Day 1

Clicker Jam Summer 2022 Game Jam Video Dev Log Day 0

This week I decided to participate in the Clicker Jam Summer 2022 game jam. The goal of this game jam is to create an idle clicker game in 7 days. For this game jam I decided to share my daily updates via video dev logs. If you are interested in checking out the game that I am making, you can see the game on Itchio here: Idle Programmer. You can watch my video dev log here on YouTub: Clicker Jam Summer 2022 - Dev Log - Day 0

Phaser 100 Days Of Code Challenge Day 2

For the second day, I decided to take the code I worked on in day 1 and to refactor it. For the first step, I broke up the code into new classes. Once I had this working, I decided that I wanted to try and create a plugin from this code so that way the code could be re-used in other projects. I also ran into some issues with my linting, so I updated the project to use the typescript version of the airbnb config.

Phaser 100 Days Of Code Challenge Day 1

For the first day, I decided to start simple and focus on getting the codebase setup that way I can keep my daily log and code in the same repository. Since I decided to use TypeScript for my challenge, this meant that I would need something to transpile my code so it can run in the browser, and I already had a template setup to do this. However, I didn’t want to create a seperate code base for each example since it would be hard to maintain, and ideally I only wanted one configuration file for the whole challenge.

Phaser 100 Days Of Code Challenge

Between work, home life, and the side projects I am working on, I haven’t been spending as much time on my game development projects as I would like. So in order to change things up, I thought it would be fun to challenge myself to coding an hour a day with the Phaser 3 framework by doing the #100DaysOfCode challenge. If you are not familiar, the #100DaysOfCode is a challenge to code for one hour a day for the next 100 days and to publicly commit to the challenge by tweeting your progress each day.

Using ES6 With Phaser 3

Phaser 3 offers a fantastic Webpack project template that makes it easy to start creating games right away. This template uses Webpack Dev Server , which provides live reloading while working on your game. It will also bundle all of JS files into one file once you are ready to deploy your game. However, one thing that is missing from this template for me is support for ES6 and other newer features of JS.

Creating A Phaser 3 Template Tutorial - Part 1

My new Phaser 3 tutorial on creating a Phaser 3 template is finally live on Game Dev Academy. In this tuorial, I show you how to create a Phaser 3 template that you will be able to extend and reuse in future Phaser 3 game you work on. In the tutorial, I show you how to: extend the basic Phaser 3 template adding a Boot scene adding a Preloader scene In part 2 we will wrap up the tutorial by covering the following topics: