Allows multiple sprites to be combined into a single mesh. Sprites are transformed using bones which are linked to GameObjects. More...
Inherits MonoBehaviour.
Public Member Functions | |
Vector2 | PixelSpaceToUVSpace (Vector2 xy) |
Converts pixel-space values to UV-space scalar values according to the currently assigned material. NOTE: This is for converting widths and heights-not coordinates (which have reversed Y-coordinates). For coordinates, use PixelCoordToUVCoord()! More... | |
Vector2 | PixelSpaceToUVSpace (int x, int y) |
Converts pixel-space values to UV-space scalar values according to the currently assigned material. NOTE: This is for converting widths and heights-not coordinates (which have reversed Y-coordinates). For coordinates, use PixelCoordToUVCoord()! More... | |
Vector2 | PixelCoordToUVCoord (Vector2 xy) |
Converts pixel coordinates to UV coordinates according to the currently assigned material. NOTE: This is for converting coordinates and will reverse the Y component accordingly. For converting widths and heights, use PixelSpaceToUVSpace()! More... | |
Vector2 | PixelCoordToUVCoord (int x, int y) |
Converts pixel coordinates to UV coordinates according to the currently assigned material. NOTE: This is for converting coordinates and will reverse the Y component accordingly. For converting widths and heights, use PixelSpaceToUVSpace()! More... | |
bool | AlreadyAdded (SpriteRoot sprite) |
Returns whether the sprite is already managed by this manager. More... | |
SpriteMesh_Managed | AddSprite (GameObject go) |
Adds the sprite attached to the specified GameObject to the SpriteManager. More... | |
SpriteMesh_Managed | AddSprite (SpriteRoot sprite) |
Adds the specified sprite to the SpriteManager. More... | |
SpriteRoot | CreateSprite (GameObject prefab) |
Instantiates the specified prefab, which should contain a sprite, and immediately adds it to the manager. More... | |
SpriteRoot | CreateSprite (GameObject prefab, Vector3 position, Quaternion rotation) |
Instantiates the specified prefab, which should contain a sprite, and immediately adds it to the manager. More... | |
void | RemoveSprite (SpriteRoot sprite) |
Removes the specified sprite from the manager. More... | |
void | MoveToFront (SpriteMesh_Managed s) |
Moves the specified sprite to the end of the drawing order. (Causes it to appear in front of other sprites.) More... | |
void | MoveToBack (SpriteMesh_Managed s) |
Moves the specified sprite to the start of the drawing order. (Causes it to appear behind other sprites.) More... | |
void | MoveInfrontOf (SpriteMesh_Managed toMove, SpriteMesh_Managed reference) |
Moves the first sprite in front of the second sprite by placing it later in the draw order. If the sprite is already in front of the reference sprite, nothing is changed. More... | |
void | MoveBehind (SpriteMesh_Managed toMove, SpriteMesh_Managed reference) |
Moves the first sprite behind the second sprite by placing it earlier in the draw order. If the sprite is already behind, nothing is done. More... | |
void | UpdateBounds () |
Instructs the manager to recalculate the bounds of the mesh. More... | |
void | ScheduleBoundsUpdate (float seconds) |
Schedules a recalculation of the mesh bounds to occur at a regular interval (given in seconds). More... | |
void | CancelBoundsUpdate () |
Cancels any previously scheduled bounds recalculations. More... | |
Public Attributes | |
SpriteRoot.WINDING_ORDER | winding = SpriteRoot.WINDING_ORDER.CW |
Whether sprite polygons should be wound clock-wise or counter clock-wise. Determines which side of the sprite is considered by the renderer to be the "front". More... | |
int | allocBlockSize = 10 |
How many sprites to allocate at a time if the sprite pool is used up. This is also the starting pool size. More... | |
bool | autoUpdateBounds = true |
When true, will automatically recalculate the bounding box for the mesh whenever sprite vertices change. If the bounding box is never recalculated, when the camera moves, Unity may think the mesh is out of sight and cull it, even though it is not. More... | |
bool | persistent = false |
If true, the SpriteManager object and associated mesh will survive a level load. More... | |
Allows multiple sprites to be combined into a single mesh. Sprites are transformed using bones which are linked to GameObjects.
Definition at line 26 of file SpriteManager.cs.
SpriteMesh_Managed SpriteManager.AddSprite | ( | GameObject | go | ) |
Adds the sprite attached to the specified GameObject to the SpriteManager.
go | GameObject containing a sprite. |
Definition at line 418 of file SpriteManager.cs.
SpriteMesh_Managed SpriteManager.AddSprite | ( | SpriteRoot | sprite | ) |
Adds the specified sprite to the SpriteManager.
go | Reference to the desired sprite. |
Definition at line 432 of file SpriteManager.cs.
bool SpriteManager.AlreadyAdded | ( | SpriteRoot | sprite | ) |
Returns whether the sprite is already managed by this manager.
sprite | Sprite for which to look. |
Definition at line 398 of file SpriteManager.cs.
void SpriteManager.CancelBoundsUpdate | ( | ) |
Cancels any previously scheduled bounds recalculations.
Definition at line 922 of file SpriteManager.cs.
SpriteRoot SpriteManager.CreateSprite | ( | GameObject | prefab | ) |
Instantiates the specified prefab, which should contain a sprite, and immediately adds it to the manager.
prefab | Prefab to be instantiated. |
Definition at line 508 of file SpriteManager.cs.
SpriteRoot SpriteManager.CreateSprite | ( | GameObject | prefab, |
Vector3 | position, | ||
Quaternion | rotation | ||
) |
Instantiates the specified prefab, which should contain a sprite, and immediately adds it to the manager.
prefab | Prefab to be instantiated. |
position | Where to place the new sprite. |
rotation | Rotation of the new sprite. |
Definition at line 522 of file SpriteManager.cs.
void SpriteManager.MoveBehind | ( | SpriteMesh_Managed | toMove, |
SpriteMesh_Managed | reference | ||
) |
Moves the first sprite behind the second sprite by placing it earlier in the draw order. If the sprite is already behind, nothing is done.
toMove | Sprite to move behind the reference sprite. |
reference | Sprite behind which "toMove" will be drawn. |
Definition at line 760 of file SpriteManager.cs.
void SpriteManager.MoveInfrontOf | ( | SpriteMesh_Managed | toMove, |
SpriteMesh_Managed | reference | ||
) |
Moves the first sprite in front of the second sprite by placing it later in the draw order. If the sprite is already in front of the reference sprite, nothing is changed.
toMove | Sprite to move in front of the reference sprite. |
reference | Sprite in front of which "toMove" will be drawn. |
Definition at line 703 of file SpriteManager.cs.
void SpriteManager.MoveToBack | ( | SpriteMesh_Managed | s | ) |
Moves the specified sprite to the start of the drawing order. (Causes it to appear behind other sprites.)
s | Sprite to move to the start of the drawing order. |
Definition at line 651 of file SpriteManager.cs.
void SpriteManager.MoveToFront | ( | SpriteMesh_Managed | s | ) |
Moves the specified sprite to the end of the drawing order. (Causes it to appear in front of other sprites.)
s | Sprite to move to the end of the drawing order. |
Definition at line 601 of file SpriteManager.cs.
Vector2 SpriteManager.PixelCoordToUVCoord | ( | Vector2 | xy | ) |
Converts pixel coordinates to UV coordinates according to the currently assigned material. NOTE: This is for converting coordinates and will reverse the Y component accordingly. For converting widths and heights, use PixelSpaceToUVSpace()!
xy | The coordinates to convert. |
Definition at line 145 of file SpriteManager.cs.
Vector2 SpriteManager.PixelCoordToUVCoord | ( | int | x, |
int | y | ||
) |
Converts pixel coordinates to UV coordinates according to the currently assigned material. NOTE: This is for converting coordinates and will reverse the Y component accordingly. For converting widths and heights, use PixelSpaceToUVSpace()!
x | The x-coordinate to convert. |
y | The y-coordinate to convert. |
Definition at line 163 of file SpriteManager.cs.
Vector2 SpriteManager.PixelSpaceToUVSpace | ( | Vector2 | xy | ) |
Converts pixel-space values to UV-space scalar values according to the currently assigned material. NOTE: This is for converting widths and heights-not coordinates (which have reversed Y-coordinates). For coordinates, use PixelCoordToUVCoord()!
xy | The values to convert. |
Definition at line 113 of file SpriteManager.cs.
Vector2 SpriteManager.PixelSpaceToUVSpace | ( | int | x, |
int | y | ||
) |
Converts pixel-space values to UV-space scalar values according to the currently assigned material. NOTE: This is for converting widths and heights-not coordinates (which have reversed Y-coordinates). For coordinates, use PixelCoordToUVCoord()!
x | The X-value to convert. |
y | The Y-value to convert. |
Definition at line 131 of file SpriteManager.cs.
void SpriteManager.RemoveSprite | ( | SpriteRoot | sprite | ) |
Removes the specified sprite from the manager.
sprite | Sprite to remove from the manager. |
Definition at line 547 of file SpriteManager.cs.
void SpriteManager.ScheduleBoundsUpdate | ( | float | seconds | ) |
Schedules a recalculation of the mesh bounds to occur at a regular interval (given in seconds).
seconds | Time, in seconds, between bounds updates. |
Definition at line 913 of file SpriteManager.cs.
void SpriteManager.UpdateBounds | ( | ) |
Instructs the manager to recalculate the bounds of the mesh.
Definition at line 903 of file SpriteManager.cs.
int SpriteManager.allocBlockSize = 10 |
How many sprites to allocate at a time if the sprite pool is used up. This is also the starting pool size.
Definition at line 41 of file SpriteManager.cs.
bool SpriteManager.autoUpdateBounds = true |
When true, will automatically recalculate the bounding box for the mesh whenever sprite vertices change. If the bounding box is never recalculated, when the camera moves, Unity may think the mesh is out of sight and cull it, even though it is not.
Definition at line 52 of file SpriteManager.cs.
bool SpriteManager.persistent = false |
If true, the SpriteManager object and associated mesh will survive a level load.
Definition at line 61 of file SpriteManager.cs.
SpriteRoot.WINDING_ORDER SpriteManager.winding = SpriteRoot.WINDING_ORDER.CW |
Whether sprite polygons should be wound clock-wise or counter clock-wise. Determines which side of the sprite is considered by the renderer to be the "front".
Definition at line 34 of file SpriteManager.cs.