keyframe-transition: Add direct accessors for key frames
This should allow modifying key frame details without requiring a full reset of the KeyframeTransition instance.
This commit is contained in:
@ -97,6 +97,21 @@ void clutter_keyframe_transition_set (Clutter
|
||||
guint n_key_frames,
|
||||
...);
|
||||
|
||||
CLUTTER_AVAILABLE_IN_1_12
|
||||
void clutter_keyframe_transition_set_key_frame (ClutterKeyframeTransition *transition,
|
||||
guint index_,
|
||||
double key,
|
||||
ClutterAnimationMode mode,
|
||||
const GValue *value);
|
||||
CLUTTER_AVAILABLE_IN_1_12
|
||||
void clutter_keyframe_transition_get_key_frame (ClutterKeyframeTransition *transition,
|
||||
guint index_,
|
||||
double *key,
|
||||
ClutterAnimationMode *mode,
|
||||
GValue *value);
|
||||
CLUTTER_AVAILABLE_IN_1_12
|
||||
guint clutter_keyframe_transition_get_n_key_frames (ClutterKeyframeTransition *transition);
|
||||
|
||||
CLUTTER_AVAILABLE_IN_1_12
|
||||
void clutter_keyframe_transition_clear (ClutterKeyframeTransition *transition);
|
||||
|
||||
|
Reference in New Issue
Block a user