games

Hero image for article
Icon for article
gamesphaser

How to Scale a Game for All Device Sizes in Phaser

4 min read

I think scaling is a pretty big topic for HTML5 mobile games, and there's no one size fits all solution. I'm yet to make more complex games with Phaser but I have a scaling strategy that seems to work pretty well for me.

Hero image for article
Icon for article
gamesperformancephaser

Increase Phaser Performance on PhoneGap with WebGL and WKWebView

2 min read

As I've discussed before, PhoneGap isn't really the best option for running a Phaser game, but it is a very easy option. If you've created a resource intensive

Hero image for article
Icon for article
gamesphaser

9 Fun HTML5 Games Built with Phaser

3 min read

Since I've been busy finishing Mobile Development for Web Developers I figured I'd do a bit of a fun post today - posts like this don't take me as long to write

Hero image for article
Icon for article
cocoongamesphaser

How to Build HTML5 Mobile Games with CocoonJS

6 min read

I'm going to walkthrough how to compile HTML5 games for iOS and Android using the CocoonJS cloud compiler.

Hero image for article
Icon for article
gamesphaser

How to Use Retina Graphics in HTML5 Phaser Games

4 min read

If you don't have one, you've probably heard of Apple's "Retina" devices. Retina is just marketing spiel that refers to the device pixel ratio of the device. If we take a look at the iPhone 5 as an example, it has a resolution of

Hero image for article
Icon for article
gamesphaser

Create a Running Platformer Game in Phaser with Tilemaps

5 min read

In this tutorial, I'm going to walk you through how to create your own tilemap, and set up this simple runner game proof of concept in Phaser.

Hero image for article
Icon for article
gamesphaserphysics

Setting up Ninja Physics in Phaser

3 min read

In the rest of this tutorial we are going to look at how you can get Ninja Physics set up in your game (it's not quite as easy as you might think).

Hero image for article
Icon for article
gamesphaser

Building a Running Platformer in Phaser with Ninja Physics

4 min read

In this tutorial we are going to expand upon the game we made in the last tutorial to allow the use of sloped surfaces by swapping out the Arcade Physics system for the Ninja Physics system.

Hero image for article
Icon for article
animationgamesphaser

How to Create Animations in Phaser with a Texture Atlas

5 min read

In this tutorial I'm going to show you how to use something called a texture atlas to create animations in Phaser.

Hero image for article
Icon for article
gamesphaser

How to Create an Infinite Climbing Game in Phaser

8 min read

In this tutorial I'm going to show you how you can create this simple, infinite climbing game.

Hero image for article
Icon for article
gamesphaser

Build a Flappy Bird & Jetpack Joyride Hybrid Game in Phaser

8 min read

This game is kind of going to be more like a Flappy Bird cross Jetpack Joyride hybrid, take a look at what we're going to build

Hero image for article
Icon for article
gamesphaserphysics

Can you use P2 Physics with Phaser on Mobile?

4 min read

I had heard that P2 performance on mobile isn't great but I'd never really put it to the test, so I wanted to try running this game I created with P2 Physics on my mobile device and recording the results.

Hero image for article
Icon for article
gamesphaser

How to Create a Candy Crush or Bejeweled Game in Phaser

10 min read

In this tutorial we will be creating a basic Bejeweled / Candy Crush style game which will consist of A grid of any size, different tile types and more

Hero image for article
Icon for article
gamesphaser

Part 1: Building a Word Search Game in HTML5 with Phaser

6 min read

This game will be a word searching game, where you have to make as many words as you can from the letters available.

Hero image for article
Icon for article
gamesphaser

Creating Animated Scoring in an HTML5 Phaser Game

4 min read

In this tutorial, I'm going to walk you through how you can create a similar style animated scoring system for your own Phaser game.

Hero image for article
Icon for article
gamesphaser

Part 2: Building a Word Search Game in HTML5 with Phaser

7 min read

In this tutorial we are going to allow the player to select a run of tiles from the grid in an attempt to create a word.

Hero image for article
Icon for article
fontsgamesphaser

Adding Custom Fonts to Your Phaser Game

2 min read

What you need to do is create a bitmap version of the font, which will essentially be a spritesheet containing each character you want the font to support.

Hero image for article
Icon for article
gamesphaser

Creating a Christmas Themed Game with Phaser: Part 1

9 min read

In this tutorial we will build a simple Christmas themed game with the Phaser framework!

Hero image for article
Icon for article
gamesphaser

Creating a Christmas Themed Game with Phaser: Part 2

4 min read

In this tutorial we will finish building the Christmas themed Phaser game we started in Part 1

Hero image for article
Icon for article
gamesphaser

How to Create an Accurate Timer for Phaser Games

4 min read

Creating this timer is reasonably easy, and once you've done it once you can easily just copy and paste it into other games. Let's go through it step by step.

Hero image for article
Icon for article
gamesphaser

Level up Your Phaser Games with ES6

4 min read

In this tutorial I am going to show you how you can use ES6 in your own Phaser games, but first let's talk a little bit about what ES6 even is.

Hero image for article
Icon for article
gamesphaser

How to Create a Parallax Background in Phaser

3 min read

In this tutorial I will be showing you how to create a background with a parallax effect in Phaser

Hero image for article
Icon for article
gamesphaserplugins

How to Create a Day & Night Cycle in Phaser

6 min read

One great way to add some atmosphere to your game is to add a day and night cycle (imagine how much less fun Minecraft would be with no night).

Hero image for article
Icon for article
gamesphaserplugins

How to Add Weather Effects in Phaser Games

4 min read

This tutorial is again going to focus on adding some atmosphere to your Phaser games, this time by adding weather effects to the game.

Hero image for article
Icon for article
gamesphaserplugins

Using the Arcade Slopes Plugin in Phaser

6 min read

In this tutorial we are going to make use of the Arcade Slopes Plugin to create our own little game demo with sloped surfaces while using the Arcade physics system.