Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/action.c
| Show First 20 Lines • Show All 1,606 Lines • ▼ Show 20 Lines | else { | ||||
| AnimData adt = {NULL}; | AnimData adt = {NULL}; | ||||
| /* init animdata, and attach to workob */ | /* init animdata, and attach to workob */ | ||||
| workob->adt = &adt; | workob->adt = &adt; | ||||
| adt.action = act; | adt.action = act; | ||||
| /* execute effects of Action on to workob (or it's PoseChannels) */ | /* execute effects of Action on to workob (or it's PoseChannels) */ | ||||
| BKE_animsys_evaluate_animdata(NULL, NULL, &workob->id, &adt, cframe, ADT_RECALC_ANIM); | BKE_animsys_evaluate_animdata(NULL, &workob->id, &adt, cframe, ADT_RECALC_ANIM, false); | ||||
| } | } | ||||
| } | } | ||||