agentsclimarketplace

Isometric character sprites

Skill 0xheycat/isometric-game-skills/skills/isometric-character-sprites

Agent-ready toolkit for isometric games: ComfyUI art pipelines, seamless terrain, sprites, grid math, Canvas2D rendering, pathfinding, and asset automation.

Install
npx -y skills add 0xheycat/isometric-game-skills --skill isometric-character-sprites

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when generating isometric characters in consistent 8 directions with a fixed feet-anchor for movement and depth sorting.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.9 KB, as published. Nobody here has run it

Isometric Character Sprites

Isometric Character Sprites demo

Overview

Characters move, so they need consistent proportions across 8 facing directions and a fixed feet-anchor (where the character touches the ground). Without this, characters appear to slide, jitter, or sort incorrectly when walking.

When to Use

  • You need a player or NPC that faces multiple directions.
  • Characters change size or proportion between directions.
  • Movement looks like the sprite is sliding or floating.

Process

  1. Lock art direction and character height in pixels.
  2. Generate the same character in 8 directions (S, SW, W, NW, N, NE, E, SE) on a plain background.
  3. Keep proportions identical - same height line and feet baseline across all 8.
  4. Fix seed/settings; regenerate any direction that drifts in size or style.
  5. Clean alpha with transparent-cutout-cleanup.
  6. Define the feet-anchor (bottom-center) identically for every direction.
  7. Test by cycling directions in place - the feet must not jump between frames.

Rationalizations (Stop Lying to Yourself)

ExcuseReality
"4 directions is enough"Diagonal movement looks broken with 4 directions in iso. Do 8.
"Slight height differences are fine"A 3px height drift reads as bobbing. Align the baseline.

Red Flags - STOP if you catch yourself:

  • Inconsistent character height across directions.
  • Feet-anchor differs per direction so the sprite slides.
  • Only front-facing direction exists.

Verification

You are NOT done until every box is checked:

  • 8 consistent directions exist for the character.
  • Feet-anchor is identical across all directions.
  • Cycling directions in place shows no jump or slide.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.