We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d0edc8 commit 9eae664Copy full SHA for 9eae664
Server~/src/tools/createPrefabTool.ts
@@ -10,7 +10,7 @@ const toolDescription = 'Creates a prefab with optional MonoBehaviour script and
10
11
// Parameter schema for the tool
12
const paramsSchema = z.object({
13
- scriptName: z.string().optional().describe('The name of the MonoBehaviour script class (optional)'),
+ componentName: z.string().optional().describe('The name of the MonoBehaviour Component to add to the prefab (optional)'),
14
prefabName: z.string().describe('The name of the prefab to create'),
15
fieldValues: z.record(z.any()).optional().describe('Optional JSON object of serialized field values to apply to the prefab')
16
});
0 commit comments