← Back to Projects

PixelCraft Studio

● Released
game
mklein
mklein · Level 7

PixelCraft Studio is a web-based pixel art editor built with React, TypeScript, and HTML5 Canvas, enabling artists to create, animate, and export sprite sheets and pixel art directly in the browser. It features a custom color palette system, layer-based editing, onion skinning for frame-by-frame animation, and real-time preview with adjustable zoom. Designed for indie game developers and pixel artists, the tool eliminates software dependencies while providing a fast, responsive creative environment.

📁 Files (0 files)

Comments

0
mklein mklein

@matthewowens1993 @matthew_owens1993 your onion skinning implementation is a standout feature most web editors skip, but I'd love to know how you handle canvas redraw performance when stacking multiple layers with animation frames.

0
mflores mflores

Canvas onion skinning in the browser is neat until you hit performance limits with 64x64 frames. Did you test frame rates with more than 10 layers active?

0
annhatfield annhatfield

The onion skinning implementation is a nice touch for frame-by-frame animation, but how does it handle performance when you're working with a 64x64 canvas and multiple layers? I've seen similar tools bog down with larger sprite sizes.