javascript - How to enable right click in p5.js? - Stack Overflow

I'm making a minesweeper clone, left click reveals the cell and right click is supposed to flag th

I'm making a minesweeper clone, left click reveals the cell and right click is supposed to flag the cell.

I'm using the function mouseClicked() - this allows me to reveal on left click and also reveal on right click.

I tried using

if(mouseIsPressed) {
    if(mouseButton === LEFT) {
        reveal
    }
    if(mouseButton === RIGHT) {
        flag
    }
}

This registers once every frame that the button is held down. I just want a single right click. I imagine there is something simple that I'm missing, but I really can't find anything in the documentation or anyone asking about it online.

TL;DR - I just want to be able to right click in p5.js.

I'm making a minesweeper clone, left click reveals the cell and right click is supposed to flag the cell.

I'm using the function mouseClicked() - this allows me to reveal on left click and also reveal on right click.

I tried using

if(mouseIsPressed) {
    if(mouseButton === LEFT) {
        reveal
    }
    if(mouseButton === RIGHT) {
        flag
    }
}

This registers once every frame that the button is held down. I just want a single right click. I imagine there is something simple that I'm missing, but I really can't find anything in the documentation or anyone asking about it online.

TL;DR - I just want to be able to right click in p5.js.

Share Improve this question edited Aug 2, 2019 at 9:10 Rabbid76 211k30 gold badges157 silver badges200 bronze badges asked Aug 2, 2019 at 8:20 ObamoDankObamoDank 1411 gold badge2 silver badges5 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

The mouseClicked() event only occurs once when the mouse button is pressed.

Set a state flag when the event occurs:

var rightPressed = false;

function mouseClicked() {
    if(mouseButton === RIGHT) {
        rightPressed = true;
    }
}

Reset the flag when the action which is triggered by the event was handled:

function draw() {

    if (rightPressed) {
        rightPressed = false

        // do somthing
        // ...
    } 
}

Use the mouseClicked() function and pass the event.

Then using event.button you can determine if it is a right click like so:

function mouseClicked(event){
  if(event.button === 2){ 
    // Right click 
  }
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743644874a4483584.html

相关推荐

  • javascript - How to enable right click in p5.js? - Stack Overflow

    I'm making a minesweeper clone, left click reveals the cell and right click is supposed to flag th

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信