list_files_in_project
Retrieve a comprehensive list of all files within a Unity project by specifying the project name. Ideal for managing, auditing, or analyzing project structure efficiently.
Instructions
Lists all the files inside a Unity project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectName": {
"minLength": 1,
"type": "string"
}
},
"required": [
"projectName"
],
"type": "object"
}