animation_create
Create a new Animation resource and attach it to a Godot scene, specifying name, duration, and looping behavior.
Instructions
Create an Animation resource and add it to a scene.
Category: Animation
Args: project_path: Path to the Godot project directory scene_path: Path to the scene file (relative to project) animation_name: Name of the animation to create duration: Duration of the animation in seconds (default: 1.0) loop: Whether the animation should loop (default: False)
Returns: Success message or error description
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | ||
| scene_path | Yes | ||
| animation_name | Yes | ||
| duration | No | ||
| loop | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |