Skip to content

Commit

Permalink
Whitespace tweaks in log output.
Browse files Browse the repository at this point in the history
  • Loading branch information
Par Winzell committed Oct 24, 2017
1 parent 5a4959d commit 5580dcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Fbx2Raw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -797,16 +797,16 @@ static void ReadNodeHierarchy(
if (lInheritType == FbxTransform::eInheritRSrs) {
if (++warnRSrsCount == 1) {
fmt::printf("Warning: node %s uses unsupported transform inheritance type 'eInheritRSrs'.\n", newPath);
fmt::printf("Further warnings of this type squelched.\n");
fmt::printf(" (Further warnings of this type squelched.)\n");
}

} else if (lInheritType == FbxTransform::eInheritRrs) {
if (++warnRrsCount == 1) {
fmt::printf(
"Warning: node %s uses unsupported transform inheritance type 'eInheritRrs'\n"
"This tool will attempt to partially compensate, but glTF cannot truly express this mode.\n"
"If this was a Maya export, consider turning off 'Segment Scale Compensate' on all joints.\n"
"Further warnings of this type squelched.\n",
" This tool will attempt to partially compensate, but glTF cannot truly express this mode.\n"
" If this was a Maya export, consider turning off 'Segment Scale Compensate' on all joints.\n"
" (Further warnings of this type squelched.)\n",
newPath);
}
}
Expand Down

0 comments on commit 5580dcf

Please sign in to comment.