Swing Fill Light Up
swing_fill_light_upRotates the fill light in an upward arc around the model's center to adjust lighting angle.
Instructions
Rotate the fill light upward in an arc around the center of the model
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:837-858 (registration)Registration of the 'swing_fill_light_up' MCP tool using mcpServer.registerTool, with title 'Swing Fill Light Up' and description 'Rotate the fill light upward in an arc around the center of the model'
mcpServer.registerTool( 'swing_fill_light_up', { title: 'Swing Fill Light Up', description: 'Rotate the fill light upward in an arc around the center of the model', inputSchema: {} }, async () => { routeToCurrentSession({ type: 'swingFillLightUp' }); return { content: [ { type: 'text', text: 'Fill light swung up' } ] }; } ); - server.js:844-857 (handler)Handler function for 'swing_fill_light_up' that routes a 'swingFillLightUp' command to the current session's browser client via WebSocket, and returns a text response confirming 'Fill light swung up'
async () => { routeToCurrentSession({ type: 'swingFillLightUp' }); return { content: [ { type: 'text', text: 'Fill light swung up' } ] }; } - server.js:840-842 (schema)Input schema for 'swing_fill_light_up' - an empty object ({}) as this tool takes no input parameters
title: 'Swing Fill Light Up', description: 'Rotate the fill light upward in an arc around the center of the model', inputSchema: {}