Category Archives: Javascript

Tips&Tricks to Port and Convert Your Games from ActionScript3 to CreateJs and Typescript

CreateJs combined to Typescript it the best option to make html5 games if you have good experience with ActionScript 3 and flash. If you developed flash games before, you might have tried to continue making them in javascript. Javascript is a great language but when the complexity of the code increases,… Read more »

How to Create a Roller Coaster Game in HTML5

      No Comments on How to Create a Roller Coaster Game in HTML5

You can learn here how you can develop your own roller coaster game in HTML5, writing it from scratch in typescript or javascript. This tutorial is structured in 3 sections: Drawing Rail Segments, Generate Roller Coaster Rail Using Bezier Curves and Implementing the Roller Coaster Physics.

How To Create Classes in ECMA5 in CreateJS Style

      No Comments on How To Create Classes in ECMA5 in CreateJS Style

Currently there is a lot of hype put on ECMA6. ECMA6 is a big improvement which makes many of the old methods obsolete. However, at this stage if you want to develop html5 games it’s hard to find a stable html5 game framework which allows smooth development using ECMA6. ECMA5… Read more »

Generating Bitmap Images On The Fly For Canvas in Javascript

When we develop games or different tools we have to generate images on the fly or to alter existing images. In plain javascript we don’t have an existing Bitmap class and we don’t really need it. We have to perform the following operations: Let’s start creating a canvas object. We can create directly in… Read more »