Collada: removed unused variables. fixed incompatible format in console output (AnimationExporter.cpp)

This commit is contained in:
Gaia Clary 2018-02-26 23:37:27 +01:00
parent 7dd0e36dc4
commit b5f0e8e1a1
1 changed files with 3 additions and 6 deletions

View File

@ -218,6 +218,7 @@ void AnimationExporter::export_sampled_matrix_animation(Object *ob, std::vector<
bc_update_scene(scene, *ctime);
BKE_object_matrix_local_get(ob, fmat);
converter.mat4_to_dae(outmat, fmat);
if (this->export_settings->limit_precision)
@ -283,8 +284,8 @@ void AnimationExporter::export_sampled_transrotloc_animation(Object *ob, std::ve
create_sampled_animation(1, ctimes, baked_curves[EULY], ob_name, "rotation", "Y", true);
create_sampled_animation(1, ctimes, baked_curves[EULZ], ob_name, "rotation", "Z", true);
fprintf(stdout, "Animation Export: Baked %zd frames for %s (sampling rate: %d)\n",
baked_curves[0].size(),
fprintf(stdout, "Animation Export: Baked %d frames for %s (sampling rate: %d)\n",
(int)baked_curves[0].size(),
ob->id.name,
this->export_settings->sampling_rate);
}
@ -1260,10 +1261,6 @@ std::string AnimationExporter::create_4x4_source(std::vector<float> &ctimes, std
source.prepareToAppendValues();
bPoseChannel *parchan = NULL;
bPoseChannel *pchan = NULL;
std::vector<float>::iterator it;
for (it = values.begin(); it != values.end(); it+=16) {