Sprites have been added to the engines interface, to implement fast 2d graphics. If you are planning to write a
2d game, that displays hundreds of little objects that animate and move around, than you should use sprites.
If you need a game menu or a hud to display the hitpoints or some inventory, you should use function
"renderStretchedPic()".
Using "renderStretchedPic()" you draw one picture over the other, so the first drawn picture is covered by the
second and so on.
Using sprites, the engine is responsible for the rendering. You force the engine to render all sprites once, by
calling function: "sce::renderRegisteredSprites()". To define a rendering order, you use the layers. Every sprite
lives in a layer, where layer 0 is the most far away one, followed by the layers 1,2,3,...,9.
To use sprites correctly and make the rendering as fast as possible, you have to follow these rules:
"Tutorial 5(sprites)" loads a sprite object and gives the user a chance to change the animation state. Have a look into the source code for this tutorial, to see how to load, access and render sprites.