blender_create_collection
Create new Blender collections to organize scene assets. Group related objects into hierarchical structures for better scene management and asset library creation.
Instructions
Create a new Blender collection for organizing assets.
Collections in Blender help organize scenes by grouping related objects. Collections can be nested for hierarchical organization.
Args:
name (string): Collection name (alphanumeric, spaces, hyphens, underscores, max 64 chars)
parent_collection (optional): Parent collection name for nested organization
Returns: Collection creation confirmation and collection information
Examples:
Create main collection: name="Environment"
Nested collection: name="Trees", parent_collection="Environment"
Asset library: name="Props", parent_collection="Library"
Use when: Organizing scene assets, creating asset libraries, structuring complex scenes Don't use when: Creating single objects without organization needs
Performance: Instant operation, negligible performance impact
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Blender collection name | |
| parent_collection | No | Parent collection name (optional) |