-
Notifications
You must be signed in to change notification settings - Fork 9
Internal representation
Note this article does not apply to palettes and regular tiles.
One important concept to grasp is the fact that in Retro Graphics Toolkit when you load file it is actually converted to it's own internal representation which may support more information than the target console. For example you can load far more tiles than the system can store in ram and then assign each tile on the map using a tile out of range of 2047 (sega genesis) or 255 (NES). So why does Retro Graphics Toolkit let you do this? The reason is so that you have the flexibility to get the art the way you want it to be then when done get eveything to limitations of the console. For example you mess around with the tilemap save your project then use the remove duplicate tiles function and now everything fits and you just saved yourself lots of time and got the same end result and from there all you need to do is export your data and you are done.