Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/collada/BCAnimationSampler.cpp
| Context not available. | |||||
| if (action) { | if (action) { | ||||
| /* isMatAnim = true; */ | /* isMatAnim = true; */ | ||||
| FCurve *fcu = (FCurve *)action->curves.first; | FCurve *fcu = (FCurve *)action->curves.first; | ||||
| #ifdef WITH_OMP | |||||
| #pragma omp parallel for | |||||
| #endif | |||||
| for (; fcu; fcu = fcu->next) { | for (; fcu; fcu = fcu->next) { | ||||
| BCCurveKey key(object_type, fcu->rna_path, fcu->array_index, a); | BCCurveKey key(object_type, fcu->rna_path, fcu->array_index, a); | ||||
| curves[key] = new BCAnimationCurve(key, ob, fcu); | curves[key] = new BCAnimationCurve(key, ob, fcu); | ||||
| Context not available. | |||||