Jump to content

Error when getting tile at determined x and y positions with a scaled tilemap


afdsfasdfsda
 Share

Recommended Posts

I was trying to make climbable ladders in my platformer by testing if the player or any npc is in front of a ladder, but my map is scaled with the setScale() method. When I tried this:

this.playerHasStairBehind = this.mapa.hasTile( escada.getTileX(this.player.x), escada.getTileY(this.player.y), escada );

By the way, escada means ladder or stairs and is a scaled layer imported from the tilemap "mapa".

But that code returned this error:

post-17058-0-73966700-1446070648_thumb.p

In order to solve this, I managed this workaround:

this.playerHasStairBehind = this.mapa.hasTile( escada.getTileX(this.player.x/this.mapScale), escada.getTileY(this.player.y/this.mapScale), escada );

I hope I've helped someone with this post!  :)

And thanks for Phaser, it's an awesome framework!

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...