Remove log

This commit is contained in:
dylan 2023-05-09 20:29:57 -07:00
parent 38eabd380a
commit 26c0ff590c

View File

@ -136,7 +136,6 @@ const draw = () => {
const sprI = i+64*state.spriteSheetPage;
const sprX = sheetX+spriteW*(i%sheetW);
const sprY = sheetY+spriteH*Math.floor(i/sheetW);
console.log(sprI, getSpriteSheet(page.activeSheet).length);
drawSprite(sprX, sprY, sprI);
if (i === state.spriteWithinPage) {
outlineRect(sprX, sprY, spriteW, spriteH, COLOR.WHITE);