three.js - Three js revision 71 at THREE.MeshFaceMaterial dont work proper -


while @ revision "66" when use three.meshfacematerial load textures of tree model works fine.. , when replace three.min.js r66 r71 meshfacematerial shows black model.

any ideas r66-r71 changes?

i found solution problem using r70 revision!(that quick)! :)

same problem here. after blind investigation found materials have opacity 0. solution modify 3 r71 library where

		// modifiers    		if ( m.transparency !== undefined ) {    			console.warn( 'three.loader: transparency has been renamed opacity' );  			m.opacity = m.transparency;    		}

change to

		// modifiers    		if ( m.transparency !== undefined ) {    			console.warn( 'three.loader: transparency has been renamed opacity' );  			m.opacity = m.transparency;    		} else {  		    m.opacity = 1;			  		}

can't wait r72!


Comments

Popular posts from this blog

Java 3D LWJGL collision -

spring - SubProtocolWebSocketHandler - No handlers -

methods - python can't use function in submodule -