script_read
Retrieve and read C# script files from Unity projects using a direct path input, facilitating script access and management for efficient development workflows.
Instructions
Read 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"
}