* Set the skin currently being rendered, returning the previously active skin.
* @param skin the new active skin
* @return the previously active skin
*/
public Skin switchActiveSkin(Skin skin) {
Skin previousSkin = activeSkin;
activeSkin = skin;
return previousSkin;
}