GreasePencilBrushes(bpy_struct)¶
base class — bpy_struct
-
class
bpy.types.GreasePencilBrushes(bpy_struct)¶ Collection of grease pencil brushes
-
active¶ Current active brush
Type: GPencilBrush
-
active_index¶ Index of active brush
Type: int in [0, inf], default 0
-
new(name, set_active=False)¶ Add a new grease pencil brush
Parameters: - name (string, (never None)) – Name, Name of the brush
- set_active (boolean, (optional)) – Set Active, Set the newly created brush to the active brush
Returns: The newly created brush
Return type:
-
remove(brush)¶ Remove a grease pencil brush
Parameters: brush ( GPencilBrush, (never None)) – The brush to remove
-
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.Structsubclass
-
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
-
Inherited Properties
Inherited Functions
References