Big plus for a compatible positioned audio system with the 3D camera :)
Hello, I started a new game on construct using this addon, so I'm also gonna update it !
Today, a new release a now available. Minifying scripts is now supported (thank you TackerTacker !)
Next release will also add the possibility to output to an array.
Hello piranha305,
In my project, I loop in every cell to check if the ones next to it are corridors, rooms, etc... so I can set the appropriate sprites.
But it wasnt working at all, until I saw errors in the console. The conditions "is in Room" and "is in Corridor" throw an error if the cell isnt in the grid (trying to access to the property of undefined object).
So I fixed it by changing the code (in the example, CellIsRoom) from
return this.map[x + "," + y].type === "room";
to
return this.map[x + "," + y] && this.map[x + "," + y].type === "room" ? true : false;
and then pretty much the same thing for others conditons.
If you're still active, make sure to update it ;)
Member since 23 Nov, 2013