With this playground, touch to manipulate the view does not work on a Microsoft Surface on Edge
If I replace the UniversalCamera with a FreeCamera, touch works. How do I enable touch with the UniversalCamera just like the FreeCamera?
Thanks,
Michael
Pinging @PolygonalSun for inputs 
You should be able to enable the same functionality by going into the mouse input and setting touchEnabled
to true.
...
// This attaches the camera to the canvas
camera.attachControl(true);
camera.inputs.attached.mouse.touchEnabled = true;
1 Like
Hello @Michael_Scherotter1 just checking in, was your question answered?