folder_move
Relocate folders in Unity projects by specifying source and target paths, ensuring organized asset management and streamlined project workflows.
Instructions
Move a folder to a new location in Unity project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sourcePath | Yes | Current path of the folder | |
| targetPath | Yes | Target path for the folder |
Input Schema (JSON Schema)
{
"properties": {
"sourcePath": {
"description": "Current path of the folder",
"type": "string"
},
"targetPath": {
"description": "Target path for the folder",
"type": "string"
}
},
"required": [
"sourcePath",
"targetPath"
],
"type": "object"
}