diff --git a/src/Fbx2Raw.cpp b/src/Fbx2Raw.cpp index df2afa8..c90140e 100644 --- a/src/Fbx2Raw.cpp +++ b/src/Fbx2Raw.cpp @@ -653,7 +653,10 @@ private: std::vector targetShapes; const double *fullWeights = fbxChannel->GetTargetShapeFullWeights(); std::string name = std::string(fbxChannel->GetName()); - fmt::printf("extractChannels; channel name: %s\n", name); + + if (verboseOutput) { + fmt::printf("\rblendshape channel: %s\n", name); + } for (int targetIx = 0; targetIx < fbxChannel->GetTargetShapeCount(); targetIx ++) { FbxShape *fbxShape = fbxChannel->GetTargetShape(targetIx);