App = function()
{
// this is where the WADE app is initialized
this.init = function()
{
// load a scene
wade.loadScene('scene1.wsc', true, function()
{
// the scene has been loaded, do something here
wade.app.onIsoTerrainMouseDown = function(data)
{
console.log(data);
}
}
);
};
};
Sorry for bad english.
I'm trying to learn wade engine. So i picked up "isometric" video tutorial.
Mine problem is that when i click on tile edges in some cases i get wrong tile coordinates.
What may cause problem ?
Or what information i need to provide ?
P.S. there is only onIsoTerrainMouseDown event or there is more? Maybe somewhere is list ?