Implementing Reset

When the user changes scenes, the current scene's reset function is called before loading the new scene.

The reset function is used to set a scene's internal states (variables) back to initial values. In the case of our scene, we want to reset the cat's coordinates back to (0, 0):

void BM_Scene_CatPad_reset()
{
    BM_Sprite_setPosition(&_catSprite, 0, 0);
    MW_AFXUnit_SVFilter_reset(&_filter);
}

Additionally, we are resetting the internal states of our filter.

Finally we have finished writing the code for our scene. The last step is to register our scene so that the active controller can run it.