Swing Fill Light Right
swing_fill_light_rightRotate the fill light to the right around the model center to adjust lighting direction.
Instructions
Rotate the fill light rightward in an arc around the center of the model
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:906-927 (registration)The tool 'swing_fill_light_right' is registered with mcpServer.registerTool(). It has no input schema (empty object) and its handler sends a 'swingFillLightRight' command type via routeToCurrentSession(), returning a confirmation text response.
mcpServer.registerTool( 'swing_fill_light_right', { title: 'Swing Fill Light Right', description: 'Rotate the fill light rightward in an arc around the center of the model', inputSchema: {} }, async () => { routeToCurrentSession({ type: 'swingFillLightRight' }); return { content: [ { type: 'text', text: 'Fill light swung right' } ] }; } ); - server.js:906-927 (handler)The handler for 'swing_fill_light_right' is an async function that routes a command of type 'swingFillLightRight' to the current session's browser client via routeToCurrentSession() and returns a text response 'Fill light swung right'.
mcpServer.registerTool( 'swing_fill_light_right', { title: 'Swing Fill Light Right', description: 'Rotate the fill light rightward in an arc around the center of the model', inputSchema: {} }, async () => { routeToCurrentSession({ type: 'swingFillLightRight' }); return { content: [ { type: 'text', text: 'Fill light swung right' } ] }; } ); - server.js:907-911 (schema)The tool has an empty input schema ({}) meaning it takes no parameters. The description states 'Rotate the fill light rightward in an arc around the center of the model'.
'swing_fill_light_right', { title: 'Swing Fill Light Right', description: 'Rotate the fill light rightward in an arc around the center of the model', inputSchema: {}