Browse Source

Merge pull request #17727 from Mugen87/dev39

Examples: Change from HalfFloat to Float in envMap EXR demo.
Michael Herzog 5 years ago
parent
commit
a25f30a0bf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/webgl_materials_envmaps_exr.html

+ 1 - 1
examples/webgl_materials_envmaps_exr.html

@@ -74,7 +74,7 @@
 				scene.add( planeMesh );
 
 				new EXRLoader()
-					.setDataType( THREE.HalfFloatType )
+					.setDataType( THREE.FloatType )
 					.load( 'textures/piz_compressed.exr', function ( texture ) {
 
 						texture.minFilter = THREE.NearestFilter;