Update - Version 0.91
Released an update to this toolset.
* Bug fix: xSceneAtRC and ySceneAtRC had row/col flipped. These functions are at lines 86 and 91, and should read:
/*
Convert from grid row,column to scene coordinates
*/
public static function xSceneAtRC( row:Int, col:Int ):Int
{
return xSceneAtGridXY( col * tileSize, row * tileSize );
}
public static function ySceneAtRC( row:Int, col:Int, level:Int ):Int
{
return ySceneAtGridXYZ( col * tileSize, row * tileSize, level * levelHeight );
}
Correction has been applied to the download on my site.