MessageActuator(Actuator)¶
base classes — bpy_struct
, Actuator
- class bpy.types.MessageActuator(Actuator)¶
- body_message¶
Optional, message body Text
- Type:
string, default “”, (never None)
- body_property¶
The message body will be set by the Property Value
- Type:
string, default “”, (never None)
- body_type¶
Toggle message type: either Text or a PropertyName
- Type:
enum in [‘TEXT’, ‘PROPERTY’], default ‘TEXT’
- subject¶
Optional, message subject (this is what can be filtered on)
- Type:
string, default “”, (never None)
- to_property¶
Optional, send message to objects with this name only, or empty to broadcast
- Type:
string, default “”, (never None)
- 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:
bpy.types.Struct
subclass
- 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