Increase Camera Field of View
increase_camera_fovWiden the camera's field of view to see more of the 3D scene. Specify an optional amount to adjust the viewing angle.
Instructions
Increase the camera field of view (wider angle, see more of the scene)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | No | Optional amount to increase (defaults to configured FOV speed) |
Implementation Reference
- server.js:1658-1682 (registration)Registration of the 'increase_camera_fov' tool with its input schema
mcpServer.registerTool( 'increase_camera_fov', { title: 'Increase Camera Field of View', description: 'Increase the camera field of view (wider angle, see more of the scene)', inputSchema: { amount: z.number().positive().optional().describe('Optional amount to increase (defaults to configured FOV speed)') } }, async ({ amount }) => { routeToCurrentSession({ type: 'increaseCameraFOV', amount: amount }); return { content: [ { type: 'text', text: amount ? `Camera FOV increased by ${amount}` : 'Camera FOV increased (wider angle)' } ] }; } ); - server.js:1667-1682 (handler)Handler function for the 'increase_camera_fov' tool - sends 'increaseCameraFOV' command via WebSocket and returns a text response
async ({ amount }) => { routeToCurrentSession({ type: 'increaseCameraFOV', amount: amount }); return { content: [ { type: 'text', text: amount ? `Camera FOV increased by ${amount}` : 'Camera FOV increased (wider angle)' } ] }; } );