This is my code right now to check if left or right mouse button is down:
// Left button down
app.stage.on("mousedown", function() {
// code...
});
// Right button down
app.stage.on("rightdown", function() {
// code...
});
But it doesn't seems to be possible that both events happen at the same time.
How would I check if both mouse buttons are pressed? Left and right.