node_get_properties
Retrieve all properties of a specific node in a Godot scene, with optional inherited properties. Returns each property's name, value, and type.
Instructions
Get all properties of a specific node in a scene.
Category: Node
Args: project_path: Path to the Godot project directory scene_path: Path to the scene file (relative to project) node_path: Path to the node within the scene (e.g., "root" or "root/Player/Sprite2D") include_inherited: Whether to include inherited properties (default: False)
Returns: JSON containing the node's properties with their names, values, and types
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | ||
| scene_path | Yes | ||
| node_path | Yes | ||
| include_inherited | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |