All models
Imagev1.0.0
Retro Diffusion Animation (Pixel Art)
Pixel-art animation spritesheet generation (walk/idle cycles, 4-direction characters)
7 inputsIMAGE
a knight in silver armor — four-angle walk cycle

Prompt: “a knight in silver armor”
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins rd-animation and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("rd-animation", {
prompt: { value: "example" },
style: { value: "four_angle_walking" },
width: { value: 48 },
height: { value: 48 },
spritesheet: { value: true },
init: { ref: "https://..." },
seed: { value: 1 },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node rd-animation \
-i prompt="example" \
-i style="four_angle_walking" \
-i width=48 \
-i height=48 \
-i spritesheet=true \
-i init=@https://... \
-i seed=1{
"name": "runs_node",
"arguments": {
"node": "rd-animation",
"inputs": {
"prompt": {
"value": "example"
},
"style": {
"value": "four_angle_walking"
},
"width": {
"value": 48
},
"height": {
"value": 48
},
"spritesheet": {
"value": true
},
"init": {
"ref": "https://..."
},
"seed": {
"value": 1
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"rd-animation","inputs":{"prompt":{"value":"example"},"style":{"value":"four_angle_walking"},"width":{"value":48},"height":{"value":48},"spritesheet":{"value":true},"init":{"ref":"https://..."},"seed":{"value":1}}}'Schema
Inputs
| prompt* | TEXT | ||
| style | TEXT | Animation four_angle_walking · walking_and_idle · small_sprites · vfx | four_angle_walking |
| width | INT | 48 | |
| height | INT | 48 | |
| spritesheet | BOOLEAN | Return spritesheet | true |
| init | IMAGE | Reference image | |
| seed | INT |
Outputs
| image | IMAGE |