timeline module
Timeline module.
Contains all functions related to the timeline control.
- mrv2.timeline.defaultSpeed(arg0: float) float
Gets the default speed of the timeline.
- mrv2.timeline.frame() int
Current frame in timeline.
- mrv2.timeline.inOutRange() mrv2.TimeRange
Selected time range of the timeline.
- mrv2.timeline.loop() mrv2.timeline.Loop
Return current loop mode of timeline.
- mrv2.timeline.playBackwards() None
Play backwards.
- mrv2.timeline.playForwards() None
Play forwards.
- mrv2.timeline.seconds() float
Current seconds in timeline.
- mrv2.timeline.seek(*args, **kwargs)
Overloaded function.
seek(time: mrv2.RationalTime) -> None
Seek to a time in timeline.
seek(frame: int) -> None
Seek to a frame in timeline.
seek(frame: float) -> None
Seek to a second in timeline.
- mrv2.timeline.setIn(*args, **kwargs)
Overloaded function.
setIn(arg0: mrv2.RationalTime) -> None
Set the in time of the selected time range of the timeline.
setIn(arg0: int) -> None
Set the in frame of the selected time range of the timeline.
setIn(arg0: float) -> None
Set the in seconds of the selected time range of the timeline.
- mrv2.timeline.setInOutRange(arg0: mrv2.TimeRange) None
Set the selected time range of the timeline.
- mrv2.timeline.setLoop(arg0: mrv2.timeline.Loop) None
Set current loop mode of timeline.
- mrv2.timeline.setOut(*args, **kwargs)
Overloaded function.
setOut(arg0: mrv2.RationalTime) -> None
Set the out time of the selected time range of the timeline.
setOut(arg0: int) -> None
Set the out frame of the selected time range of the timeline.
setOut(arg0: float) -> None
Set the out seconds of the selected time range of the timeline.
- mrv2.timeline.setSpeed(fps: float) None
Set current FPS of timeline.
- mrv2.timeline.speed(arg0: float) float
Gets the current FPS of timeline.
- mrv2.timeline.stop() None
Play forwards.
- mrv2.timeline.time() mrv2.RationalTime
Current time in timeline.
- mrv2.timeline.timeRange() mrv2.TimeRange
Time range of the timeline.