Method
ClutterTransitionset_from_value
Declaration [src]
void
clutter_transition_set_from_value (
ClutterTransition* transition,
const GValue* value
)
Description [src]
Sets the initial value of the transition.
This is a convenience function that will either create the
ClutterInterval
used by transition
, or will update it if
the ClutterTransition:interval
is already set.
This function will copy the contents of value
, so it is
safe to call g_value_unset()
after it returns.
If transition
already has a ClutterTransition:interval
set,
then value
must hold the same type, or a transformable type,
as the interval’s ClutterInterval:value-type
property.
This function is meant to be used by language bindings.
Available since: | 1.12 |
This method is renamed to clutter_transition_set_from() in language bindings |
Parameters
value |
GValue |
A |
|
The data is owned by the caller of the function. |