folder_create
Generate a new folder in a Unity project by specifying its path. Simplifies asset organization and enhances project structure directly within Unity.
Instructions
Create a new folder in Unity project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path for the new folder (e.g., Assets/MyFolder) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path for the new folder (e.g., Assets/MyFolder)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}