Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

open the .html and add "|| color === tileColorStartIndex " to

var isTransparent = (color === 0 );

like so:

if (color != fillColor) {
     var isTransparent = (color === 0 || color === tileColorStartIndex);
     imageCtx.fillStyle = makeFillStyle(color, isTransparent);
     imageCtx.fillRect(x * imageScale, y * imageScale, imageScale, imageScale);
}