Jump to content

clickable area


Anny
 Share

Recommended Posts

Define your regions as rectangles and test if a point (your mouse or finger(s) ) is inside that region.

//define you regionvar topLeftQuarter = new Phaser.Rectangle(0,0,game.width/2,game.height/2)//listen for pointersgame.input.onDown.add(handlePointerDown)//handle a touch/clickhandlePointerDown = function(pointer){    //this is the test, contains test for a point belonging to a rect definition    var inside = topLeftQuarter.contains(pointer.x,pointer.y)    //do whatever with the result    console.log('pointer is inside region top left quarter', inside)} 

Have fun!

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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