We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Is it possible to turn off Side by Side view in Computer and turn it on in Mobile ?
The text was updated successfully, but these errors were encountered:
find player-webgl.js and edit this line:
if (eye === 0) { // left eye webGL.gl.viewport(0, 0, canvas.width/2, canvas.height); } else { // right eye webGL.gl.viewport(canvas.width/2, 0, canvas.width/2, canvas.height); }
to
if (eye === 0) { // left eye webGL.gl.viewport(0, 0, canvas.width, canvas.height); } else { // right eye //webGL.gl.viewport(canvas.width/2, 0, canvas.width/2, canvas.height); }
Sorry, something went wrong.
No branches or pull requests
Hi
Is it possible to turn off Side by Side view in Computer and turn it on in Mobile ?
The text was updated successfully, but these errors were encountered: