Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit) (+1)

Okay! I just forget about full nude, and drew some underwear.
I hope there's not have any restriction for that style on Tic80's site.

But I steel don't have any idea how to change sprite atlas in runtime in Tic80 to get more graphics in project.
Like mget & mset, but for sprites.

@alexsilent This is Hello World by Nesbox

@malevolent I download your cartridge? Please.

(+1)

It looks excellent!

(+1)

Here's some sample code:

function sget(sprID,x,y)
if x<0 or x>7 or y<0 or y>7 then return 0 end
return peek4(0x8000+((sprID&511)<<6)+(y<<3)+x)
end
function sset(sprID,x,y,color)
if x<0 or x>7 or y<0 or y>7 then return end
poke4(0x8000+((sprID&511)<<6)+(y<<3)+x,color)
end