get_gdscript_structure
Analyze GDScript files to extract class, function, signal, and variable structures with line numbers for efficient code navigation and understanding.
Instructions
Get a high-level structure view of a GDScript file, showing all classes, functions, signals, and variables with their line numbers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Path to the GDScript file |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to the GDScript file",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}