add_node
Add a node to any scene in your Godot project. Specify its type, name, parent, and optional properties.
Instructions
Add a node to an existing scene
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeName | Yes | Name for the new node | |
| nodeType | Yes | Type of node to add (e.g., Sprite2D, CollisionShape2D) | |
| scenePath | Yes | Scene file path (relative to project) | |
| properties | No | Optional properties to set on the node | |
| projectPath | Yes | Godot project path | |
| parentNodePath | No | Path to the parent node (e.g., "root" or "root/Player") |