SpaceNLA(Space)#
base classes — bpy_struct
, Space
- class bpy.types.SpaceNLA(Space)#
NLA editor space data
- show_local_markers#
Show action-local markers on the strips, useful when synchronizing timing across strips
- Type:
boolean, default False
- show_markers#
If any exists, show markers in a separate row at the bottom of the editor
- Type:
boolean, default False
- show_region_channels#
- Type:
boolean, default False
- show_region_hud#
- Type:
boolean, default False
- show_region_ui#
- Type:
boolean, default False
- show_seconds#
Show timing as a timecode instead of frames
- Type:
boolean, default False
- show_strip_curves#
Show influence F-Curves on strips
- Type:
boolean, default False
- use_realtime_update#
When transforming strips, changes to the animation data are flushed to other views
- Type:
boolean, default False
- classmethod bl_rna_get_subclass(id, default=None)#
- Parameters:
id (string) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)#
- Parameters:
id (string) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type
- classmethod draw_handler_add(callback, args, region_type, draw_type)#
Add a new draw handler to this space type. It will be called every time the specified region in the space type will be drawn. Note: All arguments are positional only for now.
- Parameters:
callback (function) – A function that will be called when the region is drawn. It gets the specified arguments as input.
args (tuple) – Arguments that will be passed to the callback.
region_type (str) – The region type the callback draws in; usually
WINDOW
. (bpy.types.Region.type
)draw_type (str) – Usually
POST_PIXEL
for 2D drawing andPOST_VIEW
for 3D drawing. In some casesPRE_VIEW
can be used.BACKDROP
can be used for backdrops in the node editor.
- Returns:
Handler that can be removed later on.
- Return type:
object
- classmethod draw_handler_remove(handler, region_type)#
Remove a draw handler that was added previously.
- Parameters:
handler (object) – The draw handler that should be removed.
region_type (str) – Region type the callback was added to.