I have a scene that has one giant plane with a texture on it, I’ve restricted the control’s movement so that I can only pan left or right.
So now I can only pan left or right but since the canvas captures all events I can’t scroll back up on mobile since the canvas takes up 100vh when it’s fully present.
Is there any way I can tell my controls to only listen to horizontal swipes and drags and leave the vertical touches unmodified?
I’ve found a solution to this problem after looking through the specs for google’s Model-viewer and how theirs worked (since i saw a working example of this type of behaviour randomly that used it).
Basically in your styles apply a “touch-action: pan-y !important;” to the canvas element to be able to scroll it.
The important is to override the naturally ocurring style injection threejs does on the canvas, there is probably a more elegant solution to this but this is what I could find.