Module TimeLine
The Blender.Scene.TimeLine submodule.
TimeLine
This module gives access to Scene TimeLine Contexts in
Blender.
Example:
import Blender
from Blender import Scene
# Only the current scene has a radiosity context.
# Naturally, any scene can be made the current one
# with scene.makeCurrent()
scn = Scene.GetCurrent()
# this is the only way to access the radiosity object:
time_line = scn.getTimeLine ()
time_line.add (50)
time_line.add (100)
time_line.setName (50, 'first')
time_line.setName (100, 'second')
Blender.Redraw(-1)
Classes |
TimeLine |
This object wraps the current Scene's time line context in
Blender. |