Fix compile error for Maya 6 and 6.5

This commit is contained in:
rdb 2014-05-25 13:23:00 +00:00
parent 73b72386a0
commit 7785426d2c

View File

@ -991,7 +991,7 @@ process_model_node(MayaNodeDesc *node_desc) {
return false;
}
MTransformationMatrix matrix (transform.transformationMatrix());
MVector tl = matrix.getTranslation(MSpace::kWorld);
MVector tl = matrix.translation(MSpace::kWorld);
// Stop rediculously small values like -4.43287e-013
if (tl.x < 0.0001) {
tl.x = 0;