Sprite Factory

ReadMe
Release Notes
Overview
Using the Editor
Upgrading

Concepts
Sprites
Master Sprites
Sprite Groups
Colliders
Locators
Material Sets
SpriteUpdater
SpriteCamera

Advanced
Working in Multiple Projects

Classes
Runtime Classes

Videos
Overview
Creating Sprites
Sprite Inspector
Frame Events
Collision System
Locator System
Material Sets

Links
Sprite Factory Site
Web Documentation
Support
Contact

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.