shader_delete
Remove unwanted shaders from Unity projects by specifying the file path, streamlining asset management and project cleanup.
Instructions
Delete a shader from Unity project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the shader file |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the shader file",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}