daz_batch_select
Select multiple DAZ Studio scene nodes by providing a list of node labels, with option to add to current selection.
Instructions
Select multiple nodes in the DAZ Studio scene.
Args: node_labels: List of node display labels to select. add_to_selection: If True, add to current selection; if False, replace current selection (default: False).
Returns:
selected: Array of node labels that were successfully selected
count: Number of nodes selected
total: Total number of node labels provided
Example: # Select multiple characters daz_batch_select(["Genesis 9", "Genesis 8 Female"])
# Add props to current selection
daz_batch_select(["Sword", "Shield"], add_to_selection=True)
# Select all lights in scene
daz_batch_select(["Spot Light 1", "Distant Light 1", "Point Light 1"])Note: Selection affects which nodes appear in the Scene/Parameters panes in DAZ Studio. Some operations apply to the current selection. Nodes that don't exist are silently skipped.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| node_labels | Yes | ||
| add_to_selection | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||