MrRiker30's Comments

  • 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 ;)

MrRiker30's avatar

MrRiker30

Member since 23 Nov, 2013

None one is following MrRiker30 yet!

Trophy Case

  • 10-Year Club
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • Email Verified

Progress

13/44
How to earn trophies