create_light
Create a light node in a Godot scene, choosing from directional, spot, or omni types, and configure color, energy, range, angle, shadow, position, and rotation.
Instructions
Create a light node (DirectionalLight3D, SpotLight3D, OmniLight3D) with configuration.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Path to the Godot project directory | |
| scenePath | Yes | Scene file path | |
| parentPath | No | Parent node path (default: root) | |
| lightType | No | Light type: "directional", "spot", "omni" | |
| options | No | Options: { color: [r,g,b], energy: float, range: float, angle: float, shadow: bool, position: [x,y,z], rotation: [x,y,z] } |