Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_animsys.h
| Show First 20 Lines • Show All 206 Lines • ▼ Show 20 Lines | |||||
| /* ------------ NLA Keyframing --------------- */ | /* ------------ NLA Keyframing --------------- */ | ||||
| typedef struct NlaKeyframingContext NlaKeyframingContext; | typedef struct NlaKeyframingContext NlaKeyframingContext; | ||||
| struct NlaKeyframingContext *BKE_animsys_get_nla_keyframing_context( | struct NlaKeyframingContext *BKE_animsys_get_nla_keyframing_context( | ||||
| struct ListBase *cache, | struct ListBase *cache, | ||||
| struct PointerRNA *ptr, | struct PointerRNA *ptr, | ||||
| struct AnimData *adt, | struct AnimData *adt, | ||||
| const struct AnimationEvalContext *anim_eval_context, | const struct AnimationEvalContext *anim_eval_context); | ||||
| const bool flush_to_original); | |||||
| bool BKE_animsys_nla_remap_keyframe_values(struct NlaKeyframingContext *context, | bool BKE_animsys_nla_remap_keyframe_values(struct NlaKeyframingContext *context, | ||||
| struct PointerRNA *prop_ptr, | struct PointerRNA *prop_ptr, | ||||
| struct PropertyRNA *prop, | struct PropertyRNA *prop, | ||||
| float *values, | float *values, | ||||
| int count, | int count, | ||||
| int index, | int index, | ||||
| bool *r_force_all); | bool *r_force_all); | ||||
| void BKE_animsys_free_nla_keyframing_context_cache(struct ListBase *cache); | void BKE_animsys_free_nla_keyframing_context_cache(struct ListBase *cache); | ||||
| ▲ Show 20 Lines • Show All 72 Lines • Show Last 20 Lines | |||||