p5.js version
2.3.0
What is your operating system?
None
Web browser and version
ios safari
Actual Behavior
In a sketch like this one, mouseX/mouseY is controlled by touch when editing and running sketch in the editor. However, in "full" mode, touch is not responsive on ios mobile.
Expected Behavior
Both /sketches/ and /gull/ URLs provide p5.js previews with the same handling of touch events
Steps to reproduce
In "full" mode of this sketch, touch is not responsive on ios mobile.
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
circle(mouseX, mouseY, 20);
}
p5.js version
2.3.0
What is your operating system?
None
Web browser and version
ios safari
Actual Behavior
In a sketch like this one, mouseX/mouseY is controlled by touch when editing and running sketch in the editor. However, in "full" mode, touch is not responsive on ios mobile.
Expected Behavior
Both /sketches/ and /gull/ URLs provide p5.js previews with the same handling of touch events
Steps to reproduce
In "full" mode of this sketch, touch is not responsive on ios mobile.