script_delete
Remove a C# script from a Unity project by specifying the file path, streamlining script management and project organization.
Instructions
Delete a C# script from Unity project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the script file |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the script file",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}