What is the smallest “cell” you can have :3

2

Sylveon 2024-12-29 00:04

:3


was8bit 2024-12-29 04:08 (Edited)

The smallest cell is the standard cell, 8x8 pixels

The smallest sprite image is 1 pixel (the largest sprite is 32x32 pixels)

You can do 4x8 text or graphics but it requires using both backgrounds to layer them all together that tight


Sylveon 2024-12-29 13:29

Is it two pixel :3


SP4CEBAR 2024-12-29 22:48 (Edited)

You can flatten your 8x8-pixel cells into 8x4-pixel cells with this code from double resolution:

GOSUB SETUP_MINI_CELLS

'other code here

END
'- - - S E T U P - - -

SUB RASTERFX
  POKE G_BG0_SCROLL_Y, RASTER
  POKE G_BG1_SCROLL_Y, RASTER
END SUB

SETUP_MINI_CELLS:
  'background 0 vertical scroll offset
  G_BG0_SCROLL_Y = $FF22
  'background 1 vertical scroll offset
  G_BG1_SCROLL_Y = $FF24
  GLOBAL G_BG0_SCROLL_Y, G_BG1_SCROLL_Y
  ON RASTER CALL RASTERFX
RETURN


Sylveon 2024-12-30 02:00

Ok :3


Log in to reply.