Runtime Classes
All runtime classes are in the SpriteFactory namespace.
Classes
Enumerations
To access SpriteFactory classes from a script, add the following line to the top of the script so you don't have to type the SpriteFactory namespace each time:
C#:
using SpriteFactory;
Javascript (add below any #pragma statements):
import SpriteFactory;
Boo:
import SpriteFactory
NOTE: In Unity 4.3+, you must explicitly type SpriteFactory.Sprite every time you use the Sprite class to avoid conflicts with Unity's Sprite class.