script-info
Analyze any GDScript file to extract its structure including functions, variables, signals, and class inheritance. Use this before modifying scripts to understand existing code.
Instructions
[compact alias of get_script_info] Analyzes a GDScript and returns its structure: functions, variables, signals, class_name, extends. Use before modify_script to understand existing code.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Absolute path to project directory containing project.godot. Use the same path across all tool calls in a workflow. | |
| scriptPath | Yes | Path to .gd file relative to project (e.g., "scripts/player.gd") | |
| includeInherited | No | If true, includes members from parent classes. Default: false (only script-defined members). |