Whitespace tweaks in log output.

This commit is contained in:
Par Winzell 2017-10-23 18:59:32 -07:00
parent 5a4959d86c
commit 5580dcfa92
1 changed files with 4 additions and 4 deletions

View File

@ -797,7 +797,7 @@ static void ReadNodeHierarchy(
if (lInheritType == FbxTransform::eInheritRSrs) { if (lInheritType == FbxTransform::eInheritRSrs) {
if (++warnRSrsCount == 1) { if (++warnRSrsCount == 1) {
fmt::printf("Warning: node %s uses unsupported transform inheritance type 'eInheritRSrs'.\n", newPath); 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) { } else if (lInheritType == FbxTransform::eInheritRrs) {
@ -806,7 +806,7 @@ static void ReadNodeHierarchy(
"Warning: node %s uses unsupported transform inheritance type 'eInheritRrs'\n" "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" " 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" " If this was a Maya export, consider turning off 'Segment Scale Compensate' on all joints.\n"
"Further warnings of this type squelched.\n", " (Further warnings of this type squelched.)\n",
newPath); newPath);
} }
} }