ActionActuator(Actuator)
base classes — bpy_struct, Actuator
- class bpy.types.ActionActuator(Actuator)
Actuator to control the object movement
- apply_to_children
Update Action on all children Objects as well (default False)
- Type:
bool
- blend_mode
How this layer is blended with previous layers (default
'BLEND')- Type:
Literal[‘BLEND’, ‘ADD’]
- frame_blend_in
Number of frames of motion blending (in [0, 32767], default 0)
- Type:
int
- frame_end
(in [-inf, inf], default 0.0)
- Type:
float
- frame_property
Assign the action’s current frame number to this property (default “”, never None)
- Type:
str
- frame_start
(in [-inf, inf], default 0.0)
- Type:
float
- layer
The animation layer to play the action on (in [0, 32766], default 0)
- Type:
int
- layer_weight
How much of the previous layer to blend into this one (in [0, 1], default 0.0)
- Type:
float
- play_mode
Action playback type (default
'PLAY')- Type:
Literal[‘PLAY’, ‘PINGPONG’, ‘FLIPPER’, ‘LOOPSTOP’, ‘LOOPEND’, ‘PROPERTY’]
- priority
Execution priority - lower numbers will override actions with higher numbers (with 2 or more actions at once, the overriding channels must be lower in the stack) (in [0, 100], default 0)
- Type:
int
- property
Use this property to define the Action position (default “”, never None)
- Type:
str
- use_additive
Action is added to the current loc/rot/scale in global or local coordinate according to Local flag (default False)
- Type:
bool
- use_continue_last_frame
Restore last frame when switching on/off, otherwise play from the start each time (default True)
- Type:
bool
- use_force
Apply Action as a global or local force depending on the local option (dynamic objects only) (default False)
- Type:
bool
- use_local
Let the Action act in local coordinates, used in Force and Add mode (default False)
- Type:
bool
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type