Get the full commented source code of

HTML5 Suika Watermelon Game

Talking about Actionscript 3, Flash, Game development and Users contributions.

I am sharing with you a basic level editor made for the platform engine but easily adaptable to any tile based game made by Daniel Felipe Rodriguez

Your recent set of tutorials about the platform engine inspired me so I decide to contribute to your cause, I made a really really basic level editor but I’m sure it will help the level design, and maybe some future projects because the editor can be adapted really easy to any game.

In a future I will do a better editor, but this was just a quickly one, because really love this tutorials, continue with the good work!

The editor is made in AS3

var currentTile:int = 0;

var horizontalTiles:int = 20;
var verticalTiles:int = 10;

var totalTiles:int = mcCurrentTile.totalFrames;

var levelTilesContainer:Sprite = new Sprite();

makeSelectionTiles();
makeLevelTiles();

function makeSelectionTiles():void {
	var container:Sprite = new Sprite();
	container.x = 200;
	container.y = 20;

	for (var i:int; i

And this is the result: once you click on "Generate" the script will trace the array.

For this reason there is no way to see the result online, you have to download the source and execute it inside Flash.

Never miss an update! Subscribe, and I will bother you by email only when a new game or full source code comes out.