0xheycat
- 21 skills
- 0 followers
- 13 hours ago last updated
- ▌ Isometric Grid Math · 0xheycat bundleUse when converting between grid coordinates and screen pixels in a 2:1 isometric projection, including screen-to-grid for mouse picking.
- ▌ Tilemap Data Format · 0xheycatUse when designing the map data format (layers, tiles, objects, metadata) so maps are editable, versionable, and engine-agnostic.
- ▌ Comfyui Lowvram Setup · 0xheycatUse when configuring ComfyUI to generate SDXL isometric assets on a 12GB GPU (RTX 3060) without out-of-memory crashes.
- ▌ Isometric Pathfinding · 0xheycatUse when units must navigate an isometric grid around obstacles using A* on the walkable layer with correct iso neighbor rules.
- ▌ Autotiling Transitions · 0xheycat bundleUse when making different terrain types (grass, water, sand) blend with automatic edge and corner transition tiles instead of hard seams.
- ▌ Using Isometric Skills · 0xheycatUse when starting ANY isometric game task to route the request to the correct specialized skill before writing code or generating art.
- ▌ Depth Sorting Occlusion · 0xheycat bundleUse when sprites draw in the wrong order so characters appear in front of objects they should be behind in an isometric scene.
- ▌ Isometric Art Direction · 0xheycatUse when starting an isometric project to lock ONE consistent art style (angle, light, palette, scale) before generating any asset.
- ▌ Camera Pan Zoom Controls · 0xheycatUse when adding pan, zoom, and clamping to an isometric camera so the world stays crisp and within bounds across screen sizes.
- ▌ Godot4 Isometric Tilemap · 0xheycatUse when setting up correct 2:1 isometric rendering in Godot 4 with TileMapLayer + Y-sort, mapping this repo's engine-agnostic grid math and depth rules onto Godot's native APIs.
- ▌ Isometric Object Sprites · 0xheycat bundleUse when generating isolated isometric props (trees, rocks, bushes, stumps) that drop cleanly onto tiles with correct scale and a transparent background.
- ▌ Tile Picking Interaction · 0xheycatUse when converting a mouse/touch position into the correct isometric tile for selection, highlighting, and placement.
- ▌ Asset Pipeline Automation · 0xheycatUse when automating the path from generated sprites to a shipped atlas + map so re-generating art does not mean hours of manual rework.
- ▌ Spritesheet Atlas Packing · 0xheycatUse when packing many isometric sprites into a texture atlas with a JSON map so the engine draws from one image with correct frame coordinates.
- ▌ Animated Sprite Generation · 0xheycat bundleUse when creating looping animated isometric sprites (water, fire, windmills, flags) as frame strips that play back smoothly in-engine.
- ▌ Isometric Building Sprites · 0xheycat bundleUse when generating isometric buildings (houses, barns, shops) that sit on a defined tile footprint and depth-sort correctly with characters.
- ▌ Seamless Isometric Terrain · 0xheycat bundleGenerate seamless, tileable isometric terrain tiles (Hay Day / farm-game style) with ComfyUI on consumer GPUs (RTX 3060 12GB). Use this skill whenever the user wants to create ground tiles (grass, dirt, water, road, plowed field, sand, stone, snow), build a tilemap that connects without seams or gaps, fix tiles that have visible edges/mismatched shapes/mixed colors, or set up the proven "Resep D" isometric tile workflow, prompts, and post-processing (transparent PNG via rembg/SAM).
- ▌ Transparent Cutout Cleanup · 0xheycatUse when removing backgrounds from generated sprites to get clean alpha edges with no halo, fringe, or leftover background pixels.
- ▌ Canvas2d Isometric Renderer · 0xheycatUse when building a Canvas 2D renderer that draws an isometric tilemap and sprites efficiently with correct ordering.
- ▌ Isometric Character Sprites · 0xheycat bundleUse when generating isometric characters in consistent 8 directions with a fixed feet-anchor for movement and depth sorting.
- ▌ Canvas Performance Optimization · 0xheycatUse when an isometric Canvas game drops frames, to cut draw calls and allocations and hold a steady 60fps.