Hi:
I meet a problem when load this model,the files here.nv.fbx (4.0 MB)
After load the moedel,It would lost eyes and hair when the camera comes close。liek this:
How can I do?
thanks lot
Hi:
I meet a problem when load this model,the files here.nv.fbx (4.0 MB)
After load the moedel,It would lost eyes and hair when the camera comes close。liek this:
How can I do?
thanks lot
It seems certain parts of the model get view frustum culled. Try to load your file like so:
loader.load( 'models/fbx/nv.fbx', function ( object ) {
mixer = new THREE.AnimationMixer( object );
var action = mixer.clipAction( object.animations[ 0 ] );
action.play();
object.traverse( function ( child ) {
if ( child.isMesh ) {
child.frustumCulled = false;
}
} );
scene.add( object );
} );
Notice how Object3D.frustumCulled is set to true
.
yes,It works.Thank you !