Explorar el Código

Check for WebGL2

Garrett Johnson hace 4 años
padre
commit
356cfe9682
Se han modificado 1 ficheros con 10 adiciones y 1 borrados
  1. 10 1
      examples/webgl_postprocessing_3dlut.html

+ 10 - 1
examples/webgl_postprocessing_3dlut.html

@@ -133,7 +133,16 @@
 				gui.add( params, 'enabled' );
 				gui.add( params, 'lut', Object.keys( lutMap ) );
 				gui.add( params, 'intensity' ).min( 0 ).max( 1 );
-				gui.add( params, 'use2dLut' );
+
+				if ( renderer.capabilities.isWebGL2 ) {
+
+					gui.add( params, 'use2dLut' );
+
+				} else {
+
+					params.use2DLut = true;
+
+				}
 
 				window.addEventListener( 'resize', onWindowResize, false );