unity_search_by_name
Search for GameObjects by name using substring or regex matching. Filter results by including inactive objects and limiting the output count. Target a specific Unity instance for parallel-safe operations.
Instructions
Find all GameObjects whose name contains a pattern. Supports substring matching or regex.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name pattern to search for | |
| regex | No | Use regex matching instead of substring (default: false) | |
| includeInactive | No | Include inactive GameObjects (default: false) | |
| limit | No | Maximum results to return (default: 500). | |
| port | No | Target Unity instance port for parallel-safe routing. Get this from unity_select_instance. When working with multiple Unity instances, ALWAYS include this parameter. |