skills/spritecook-use-assets-in-godot/SKILL.md
Godot workflow for SpriteCook assets. Use when the user wants to turn SpriteCook spritesheet PNGs, animation assets, or character animation runs into Godot SpriteFrames resources and AnimatedSprite2D/AnimatedSprite3D animation nodes. Covers both manual spritesheet-to-Godot setup and the optional SpriteCook MCP Godot export endpoint.
npx skillsauth add spritecook/skills spritecook-use-assets-in-godotInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when moving existing SpriteCook assets into Godot. Pair it with spritecook-workflow-essentials for safe downloads and asset manifests. Pair it with spritecook-animate-assets only when animations still need to be generated first.
Prefer the manual path first: most agents can create the Godot animation resource directly from SpriteCook spritesheets, which gives more freedom and avoids extra MCP server work. Use the MCP export endpoint second when the user wants SpriteCook to return a packaged set of files.
SpriteFrames resource and an AnimatedSprite2D node yourself.export_godot_character_package to get prebuilt text files and asset downloads, then materialize the returned manifest.Use this path when the agent has downloaded SpriteCook animation outputs, has explicit animation asset IDs, or can access spritesheet URLs and frame metadata. The goal is only to make the spritesheets usable as a Godot animation component, not to build gameplay, controllers, playground scenes, or complete demo levels unless the user explicitly asks for those.
Required per animation:
idle, walk, attack, jump, fall, hurt, or death.attack, hurt, or death.Important: use the output spritesheet frame size, not the original source asset size. Detailed animations may return larger frames because SpriteCook adds margin, for example a 512x512 source can produce 640x640 frames.
For a new package inside an existing Godot project, use a contained folder and avoid overwriting the user's existing scenes:
SpriteCook/
assets/
player_idle.png
player_walk.png
player_attack.png
player_frames.tres
If the user already has a scene, add or update only the AnimatedSprite2D node and its sprite_frames reference.
Create a .tres SpriteFrames resource that references each spritesheet as a Texture2D ext_resource and creates one AtlasTexture sub_resource per frame.
For each frame i, use:
region = Rect2(i * frame_width, 0, frame_width, frame_height)
The resource shape is:
[gd_resource type="SpriteFrames" load_steps=<resource_count> format=3]
[ext_resource type="Texture2D" path="res://SpriteCook/assets/player_idle.png" id="idle_sheet"]
[sub_resource type="AtlasTexture" id="AtlasTexture_idle_0"]
atlas = ExtResource("idle_sheet")
region = Rect2(0, 0, 64, 64)
[resource]
animations = [{
"frames": [{"duration": 1.0, "texture": SubResource("AtlasTexture_idle_0")}],
"loop": true,
"name": &"idle",
"speed": 8.0
}]
Generate all frames, not only frame 0. If there are multiple animations, append each animation object to the animations array. Set speed to the SpriteCook animation_fps.
Add an AnimatedSprite2D node to the target scene, or create a minimal scene containing only the animation node when no target scene exists:
[gd_scene load_steps=2 format=3]
[ext_resource type="SpriteFrames" path="res://SpriteCook/assets/player_frames.tres" id="frames"]
[node name="AnimatedSprite2D" type="AnimatedSprite2D"]
sprite_frames = ExtResource("frames")
animation = &"idle"
autoplay = "idle"
If the user's scene already has a character/player node, attach the AnimatedSprite2D as a child and leave gameplay logic alone.
.tres exists under res://.frame_count * frame_width == spritesheet_width for horizontal sheets.AnimatedSprite2D and references the SpriteFrames resource.AnimatedSprite2D animations in Godot and verify frame slicing/playback.Use this path when the user wants SpriteCook to return a complete package manifest, or when a completed character animation run_id is available and state inference from presets is useful. Even when using the endpoint, focus on the returned SpriteFrames/AnimatedSprite setup unless the user asks for demo scenes.
Call export_godot_character_package.
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| run_id | string | null | Completed character animation run ID. Prefer this when available because SpriteCook can infer animation states from presets |
| animation_asset_ids | string[] | null | Explicit animation asset IDs when no run ID is available |
| character_name | string | null | Optional name used in export metadata |
| state_hints_by_asset_id | object | null | Optional mapping from asset ID to animation state |
Valid state hints include Idle, Walk, Run, Jump, Fall, IdleDown, IdleUp, IdleRight, WalkDown, WalkUp, WalkRight, RunDown, RunUp, RunRight, Attack, Hurt, and Death.
The tool returns:
text_files: write each { path, content } exactly.asset_downloads: download each signed url to its path.main_scene: scene to open or run after Godot imports resources.package_kind: character for a playable setup, or animation_preview for a single animation.Do not assume the MCP server wrote files locally. The agent must create the returned files in the user's Godot project.
Example arguments:
{
"animation_asset_ids": ["idle-id", "walk-id", "attack-id"],
"character_name": "Player",
"state_hints_by_asset_id": {
"idle-id": "Idle",
"walk-id": "Walk",
"attack-id": "Attack"
}
}
After materializing the package, use the same verification checklist as the manual path.
tools
Shared workflow rules for SpriteCook. Use together with spritecook-generate-sprites or spritecook-animate-assets for credits, downloads, asset manifests, safe auth handling, and recommended defaults.
documentation
Implementation guide for using SpriteCook top-down 15-piece tilesets with a dual-grid autotile renderer. Use when explaining or coding how to map a 4x4 15-piece tileset image into terrain using SpriteCook's dual-grid mask system.
tools
Tileset generation guide for SpriteCook. Use with spritecook-workflow-essentials when generating autotile tilesets through SpriteCook MCP/API, choosing tile sizes, using reference/edit/style asset IDs, and saving generated tileset asset IDs.
documentation
Still-image generation guide for SpriteCook. Use with spritecook-workflow-essentials when generating pixel art or detailed/HD assets, choosing models, and keeping style consistency with reference assets.