This repo contains code I've written while trying out different ways of scrolling with SGDK.
THis code has been tested with SGDK 1.80.
The folders ScrollingWithCamera and SimpleScrolling are scrolling examples using the MAP type introduced in version 1.60. The code has been updated to compile with SGDK 1.80. So you must have version 1.80 on your system to use this code.
- HScroll uses
VDP_setTileMapEx()
to scroll a relatively large image over the default SGDK tilespace. - HScrollDec uses
VDP_setTileMapEx()
andHSCROLL_PLANE
to scroll two planes. - HScrollTiled uses
VDP_setTileMapEx()
andHSCROLL_TILE
to demonstrate parallax scrolling with two planes.