Walk Key Light In
walk_key_light_inMove the key light closer to the model's center along the axis from the origin to adjust lighting.
Instructions
Move the key light closer to the center of the model along the axis from the model origin
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:929-950 (registration)Registration of the 'walk_key_light_in' tool via mcpServer.registerTool() with title, description, input schema, and async handler.
mcpServer.registerTool( 'walk_key_light_in', { title: 'Walk Key Light In', description: 'Move the key light closer to the center of the model along the axis from the model origin', inputSchema: {} }, async () => { routeToCurrentSession({ type: 'walkKeyLightIn' }); return { content: [ { type: 'text', text: 'Key light walked in' } ] }; } ); - server.js:936-950 (handler)The async handler function that executes when walk_key_light_in is called. Routes a 'walkKeyLightIn' command to the current session via WebSocket and returns a text response 'Key light walked in'.
async () => { routeToCurrentSession({ type: 'walkKeyLightIn' }); return { content: [ { type: 'text', text: 'Key light walked in' } ] }; } ); - server.js:933-935 (schema)Input schema for walk_key_light_in - an empty object (no parameters required), defined inside the registerTool call.
description: 'Move the key light closer to the center of the model along the axis from the model origin', inputSchema: {} },