Browse Source

HelioWebXRPolyfill: Clean up.

Mr.doob 5 years ago
parent
commit
e1f9510d40
1 changed files with 3 additions and 5 deletions
  1. 3 5
      examples/js/vr/HelioWebXRPolyfill.js

+ 3 - 5
examples/js/vr/HelioWebXRPolyfill.js

@@ -4,9 +4,7 @@
 
 
 if ( /(Helio)/g.test( navigator.userAgent ) && "xr" in navigator ) {
 if ( /(Helio)/g.test( navigator.userAgent ) && "xr" in navigator ) {
 
 
-	if ('isSessionSupported' in navigator.xr) {
-        return;
-    }
+	if ( 'isSessionSupported' in navigator.xr ) return;
 
 
 	console.log( "Helio WebXR Polyfill (Lumin 0.97.0)" );
 	console.log( "Helio WebXR Polyfill (Lumin 0.97.0)" );
 
 
@@ -19,7 +17,7 @@ if ( /(Helio)/g.test( navigator.userAgent ) && "xr" in navigator ) {
     "supportsSessionMode" in navigator.xr
     "supportsSessionMode" in navigator.xr
 	) {
 	) {
 
 
-		navigator.xr.supportsSession = function ( sessionType ) {
+		navigator.xr.supportsSession = function ( /*sessionType*/ ) {
 
 
 			// Force using immersive-ar
 			// Force using immersive-ar
 			return navigator.xr.supportsSessionMode( 'immersive-ar' );
 			return navigator.xr.supportsSessionMode( 'immersive-ar' );
@@ -32,7 +30,7 @@ if ( /(Helio)/g.test( navigator.userAgent ) && "xr" in navigator ) {
 
 
 		const tempRequestSession = navigator.xr.requestSession.bind( navigator.xr );
 		const tempRequestSession = navigator.xr.requestSession.bind( navigator.xr );
 
 
-		navigator.xr.requestSession = function ( sessionType ) {
+		navigator.xr.requestSession = function ( /*sessionType*/ ) {
 
 
 			return new Promise( function ( resolve, reject ) {
 			return new Promise( function ( resolve, reject ) {