|
@@ -1590,7 +1590,7 @@ THREE.FBXLoader = ( function () {
|
|
|
|
|
|
var positionAttribute = new THREE.Float32BufferAttribute( buffers.vertex, 3 );
|
|
|
|
|
|
- preTransform.applyToBufferAttribute( positionAttribute );
|
|
|
+ positionAttribute.applyMatrix4( preTransform );
|
|
|
|
|
|
geo.setAttribute( 'position', positionAttribute );
|
|
|
|
|
@@ -2118,7 +2118,7 @@ THREE.FBXLoader = ( function () {
|
|
|
var positionAttribute = new THREE.Float32BufferAttribute( morphBuffers.vertex, 3 );
|
|
|
positionAttribute.name = name || morphGeoNode.attrName;
|
|
|
|
|
|
- preTransform.applyToBufferAttribute( positionAttribute );
|
|
|
+ positionAttribute.applyMatrix4( preTransform );
|
|
|
|
|
|
parentGeo.morphAttributes.position.push( positionAttribute );
|
|
|
|