bc_update_scene(eval_ctx, scene, *ctime);
BKE_object_matrix_local_get(ob, fmat);
+
converter.mat4_to_dae(outmat, fmat);
if (this->export_settings->limit_precision)
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);
}
source.prepareToAppendValues();
- bPoseChannel *parchan = NULL;
- bPoseChannel *pchan = NULL;
-
-
std::vector<float>::iterator it;
for (it = values.begin(); it != values.end(); it+=16) {