Most appropriate sub-area of p5.js?
p5.js version
2.0.0
Web browser and version
Chrome
Operating system
Android
Steps to reproduce this
Steps:
- Perform swipe rotation with orbitControl() on an Android smartphone.
- Then, perform a swipe outside the canvas element.
- If I swipe over the canvas element again, orbitControl() doesn't get executed.
Snippet:
function setup() {
createCanvas(400, 400, WEBGL);
}
function draw() {
background(220);
orbitControl();
box(100);
}