Walk Fill Light Out
walk_fill_light_outMoves the fill light away from the model center along the origin axis to adjust lighting.
Instructions
Move the fill light farther from the center of the model along the axis from the model origin
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:998-1019 (registration)Registration of the walk_fill_light_out tool via McpServer.registerTool
mcpServer.registerTool( 'walk_fill_light_out', { title: 'Walk Fill Light Out', description: 'Move the fill light farther from the center of the model along the axis from the model origin', inputSchema: {} }, async () => { routeToCurrentSession({ type: 'walkFillLightOut' }); return { content: [ { type: 'text', text: 'Fill light walked out' } ] }; } ); - server.js:1005-1019 (handler)Handler function for walk_fill_light_out tool - routes a 'walkFillLightOut' command to the current user session and returns a confirmation message
async () => { routeToCurrentSession({ type: 'walkFillLightOut' }); return { content: [ { type: 'text', text: 'Fill light walked out' } ] }; } ); - server.js:1000-1004 (schema)Schema/input definition for walk_fill_light_out - no input parameters required, just a title and description
{ title: 'Walk Fill Light Out', description: 'Move the fill light farther from the center of the model along the axis from the model origin', inputSchema: {} },