find_objects
Search a Three.js scene for objects by type, material, visibility, name pattern, or custom property. Get matching objects with details.
Instructions
Search scene objects by type, material, visibility, name pattern, or custom property. Returns matching objects with details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Object type: Mesh, Group, InstancedMesh, Light, etc. | |
| material | No | Material name or type to filter by | |
| visible | No | Filter by visibility | |
| namePattern | No | Regex pattern to match object names | |
| property | No | Custom property name to check on the object | |
| value | No | Expected value for the custom property | |
| hasGeometry | No | Filter objects with/without geometry | |
| minChildren | No | Minimum number of children | |
| limit | No | Max results (default: 50, max: 200) |