Method
ClutterTimelineadd_marker_at_time
Declaration [src]
void
clutter_timeline_add_marker_at_time (
ClutterTimeline* timeline,
const gchar* marker_name,
guint msecs
)
Description [src]
Adds a named marker that will be hit when the timeline has been
running for msecs
milliseconds.
Markers are unique string identifiers for a given position on the
timeline. Once timeline
reaches the given msecs
, it will emit
a ClutterTimeline::marker-reached
signal for each marker attached to that position.
A marker can be removed with clutter_timeline_remove_marker()
. The
timeline can be advanced to a marker using
clutter_timeline_advance_to_marker()
.
See also: clutter_timeline_add_marker()
.