SpriteManager: Difference between revisions

From WiiBrew
Jump to navigation Jump to search
Mu mind (talk | contribs)
Infobox development tools: Show download mirror
Mu mind (talk | contribs)
Edit for readability
Line 8: Line 8:
}}
}}


'''Spritemanager''' is a class designed to be an easy to use manager for [[Libwiisprite]] that allow to directly create and handle sprites with images, images sequence or text inside. This code is useful to avoid memory problem since the object SpriteManager handle correctly himself memory used (free memory just deleting the object SpriteManager or removing a sprite).
'''Spritemanager''' is a class designed to be an easy-to-use manager for [[Libwiisprite]] that allows creating and handling sprites directly from images, sequences of images, or text. This code is useful to avoid memory problems since the SpriteManager object handles memory allocation itself (the memory is freed when you delete the SpriteManager object or remove a sprite).


This library is developed in C++ by [[User:Untitled|Unititled]] with help of TextRender written by [[User:DragonMinded|DragonMinded]] (modified) and Imageloader by [[User:Ulti|Ulti]] (highly modified).
This library is developed in C++ by [[User:Untitled|Unititled]] with help of TextRender written by [[User:DragonMinded|DragonMinded]] (modified) and Imageloader by [[User:Ulti|Ulti]] (highly modified).


The use of SpriteManager is highly detailed in the SpriteManager.h and an simple example project is given in the pack.
The usage of SpriteManager is thoroughly documented in SpriteManager.h and a simple example project is included in the SpriteManager package.


== Installation ==
== Installation ==

Revision as of 03:05, 20 October 2009

SpriteManager
General
Author(s)Untitled
TypeLibrary
Version1.0
Links
Download
Mirror

Spritemanager is a class designed to be an easy-to-use manager for Libwiisprite that allows creating and handling sprites directly from images, sequences of images, or text. This code is useful to avoid memory problems since the SpriteManager object handles memory allocation itself (the memory is freed when you delete the SpriteManager object or remove a sprite).

This library is developed in C++ by Unititled with help of TextRender written by DragonMinded (modified) and Imageloader by Ulti (highly modified).

The usage of SpriteManager is thoroughly documented in SpriteManager.h and a simple example project is included in the SpriteManager package.

Installation

Follow the Readme file