LightGroup
- class LightGroup
-
- property name
The name of the group.
- Type
- Raises
ReadOnlyError -- If
Database
is in read only mode.
- property layer
The parent lighting layer of this group.
- Type
LightingLayer, read-only
- property parent_group
The parent group of this group or
None
if the group is at the root of the hierarchy.- Type
LightGroup or None
- Raises
ReadOnlyError -- If
Database
is in read only mode.ValueError -- If trying to move the group into one of its children or trying to move the layer to itself.
- list_child_groups(recursive=True)
List the child light groups of this group.
- list_lights(recursive=True)
List the lights of this group.
- remove(force=False)
Delete the light group
Note
By default, only empty groups can be deleted (
NotEmptyError
is raised otherwise), useforce
to force deletion of non empty groups.- Parameters
force (bool) -- Force the deletion of the group even if it contains lights and/or groups.
- Raises
NotEmptyError -- If
force
isFalse
and the group contains lights and/or groups.ReadOnlyError -- If
Database
is in read only mode.