Ver Fonte

Check material before applying bone transform to skinned mesh during raycasting

Zachary Capalbo há 4 anos atrás
pai
commit
078a172d17
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/objects/Mesh.js

+ 1 - 1
src/objects/Mesh.js

@@ -410,7 +410,7 @@ function checkBufferGeometryIntersection( object, material, raycaster, ray, posi
 
 	}
 
-	if ( object.isSkinnedMesh ) {
+	if ( object.isSkinnedMesh && material.skinning ) {
 
 		object.boneTransform( a, _vA );
 		object.boneTransform( b, _vB );