Introduction to this series on how to make a rpg game In this series of phaser tutorials we will show you how to make a rpg game from scratch. From building tile maps to displaying them on screen and adding characters in your game. We will even show you how to draw your own game …
Monthly archives: December, 2016
Python programming beginner tutorial understanding the basics
Some important things to understand about the python programming language Unlike other programming languages python is one of the few which determines open and closing programming blocks based on indentation of code. For example the following code will not run : The correct way to do this is to introduce a tab in the code …
Python programming tutorial for beginners setting up
What we need in order to install python? First of all this beginners python tutorial will be done in python 3. Even though 2.7 is still quite popular we will be basing our tutorials on python 3. First we need to download python. You can do this in the following operating systems by visiting. https://www.python.org/ and clicking on …
Artificial Intelligence Components of Genetic Algorithm
Components of a genetic algorithm First of all welcome to our second tutorial on genetic algorithms. Let’s talk about some of the methods we will be implementing in order to build our genetic algorithm. We will try and build it as a generically as possible to allow for us to use it in other applications …
Artificial Intelligence Genetic Algorithm tutorial 1
What we will be covering in this series In this genetic algorithm tutorial we will be taking the game we built in our phaser platformer game series. Then we will be teaching our player to automatically learn our level and complete it without supervision. Just to recap this is the game and what the level looks …
Game development a platformer game with Phaser and HTML 5: Tutorial 9
Debugging issues in your game and fixing up weird occurrences We have now implemented quite a few concepts in phaser. As some of you may have realised by now we have a few bugs with our collision detection. This tutorial has been constructed to show you practically how to debug and fix these issues. So …
Game development a platformer game with Phaser and HTML 5: Tutorial 8
What next in this game development tutorial We now have a bit more room in our game to add some more objects. To make this game a bit more exciting we need to add some obstacles which the player needs to avoid. If the player manages to not avoid them the player dies. In this …
Game development a platformer game with Phaser and HTML 5: Tutorial 7
Lets expand on the players environment At the moment we have quite a boring game. We can just jump from one platform to the next in the vertical direction. Let’s expand our game world to allow our player to go to the right of the screen like a typical mario brothers type platformer and pave …
Game development a platformer game with Phaser and HTML 5: Tutorial 6
The goal for this game development tutorial In this tutorial we want to get your phaser platformer game to this point where it is a little more interest. Some of the bugs and modifications in this tutorial We will deal with a few fixes as well. In our last tutorial we had some issues where …
Python programming tutorial 101 brief history
The history of python as a programming language First of all thank you for taking part in this python programming tutorial series and taking the time to read through this post. Python has been around for quite a while actually since the 1980’s but has only recently started gaining traction, the main reason for this …