@Mugen87 I’ve patched the method and unfortunately I have the same result.
If I comment this part:
if ( object.isSkinnedMesh === true ) {
object.boneTransform( a, vA );
object.boneTransform( b, vB );
object.boneTransform( c, vC );
}
I can correctly export a T model, but with that code the result is this:
Do you have any idea what can be the cause?
Oh, also I had to change this:
skinIndex.fromBufferAttribute( geometry.attributes.skinIndex, index );
skinWeight.fromBufferAttribute( geometry.attributes.skinWeight, index );
to this:
skinIndex.fromBufferAttribute( geometry.attributes.skinIndex0, index );
skinWeight.fromBufferAttribute( geometry.attributes.skinWeight0, index );
Because when logging the object, that was the name of the attribute