- fbx: format fixes.

pull/14/head
Alexander Gessler 2012-08-09 02:10:13 +02:00
parent 24ce9495fd
commit 5250240ed6
1 changed files with 6 additions and 6 deletions

View File

@ -1528,13 +1528,13 @@ private:
ai_assert(node); ai_assert(node);
if (node->TargetProperty().empty()) { if (node->TargetProperty().empty()) {
FBXImporter::LogWarn("target property for animation curve not set"); FBXImporter::LogWarn("target property for animation curve not set: " + node->Name());
continue; continue;
} }
curve_node = node; curve_node = node;
if (node->Curves().empty()) { if (node->Curves().empty()) {
FBXImporter::LogWarn("no animation curves assigned to AnimationCurveNode"); FBXImporter::LogWarn("no animation curves assigned to AnimationCurveNode: " + node->Name());
continue; continue;
} }
@ -1632,8 +1632,8 @@ private:
(*chain[i]).second, (*chain[i]).second,
layer_map, layer_map,
max_time, max_time,
min_time min_time);
);
break; break;
case TransformationComp_RotationOffset: case TransformationComp_RotationOffset:
@ -1690,8 +1690,8 @@ private:
(*chain[i]).second, (*chain[i]).second,
layer_map, layer_map,
max_time, max_time,
min_time min_time);
);
break; break;
default: default: