Struct(bpy_struct)
base class — bpy_struct
- class bpy.types.Struct(bpy_struct)
RNA structure definition
- description
Description of the Struct’s purpose
- Type:
string, default “”, (readonly, never None)
- functions
- Type:
bpy_prop_collectionofFunction, (readonly)
- identifier
Unique name used in the code and scripting
- Type:
string, default “”, (readonly, never None)
- name
Human readable name
- Type:
string, default “”, (readonly, never None)
- name_property
Property that gives the name of the struct
- Type:
StringProperty, (readonly)
- nested
Struct in which this struct is always nested, and to which it logically belongs
- Type:
Struct, (readonly)
- properties
Properties in the struct
- Type:
bpy_prop_collectionofProperty, (readonly)
- property_tags
Tags that properties can use to influence behavior
- Type:
bpy_prop_collectionofEnumPropertyItem, (readonly)
- translation_context
Translation context of the struct’s name
- Type:
string, default “”, (readonly, 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.Structsubclass
- 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