query_scene_settings
Retrieve scene settings within the PlayCanvas Editor to configure and manage 3D web application environments for real-time development.
Instructions
Query the scene settings
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/scene.ts:18-25 (registration)Registers the 'query_scene_settings' MCP tool with an empty input schema and a handler that delegates to the WebSocket server.mcp.tool( 'query_scene_settings', 'Query the scene settings', {}, () => { return wss.call('scene:settings:modify', {}); } );
- src/tools/scene.ts:22-24 (handler)Inline handler function that executes the tool logic by calling wss.call with an empty object (note: endpoint is 'scene:settings:modify', which may be intended for querying).() => { return wss.call('scene:settings:modify', {}); }