SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
SpriteManager Class Reference

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...
 

Detailed Description

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.

Member Function Documentation

SpriteMesh_Managed SpriteManager.AddSprite ( GameObject  go)

Adds the sprite attached to the specified GameObject to the SpriteManager.

Parameters
goGameObject containing a sprite.
Returns
A reference to the sprite's managed mesh.

Definition at line 418 of file SpriteManager.cs.

SpriteMesh_Managed SpriteManager.AddSprite ( SpriteRoot  sprite)

Adds the specified sprite to the SpriteManager.

Parameters
goReference to the desired sprite.
Returns
A reference to the sprite's managed mesh.

Definition at line 432 of file SpriteManager.cs.

bool SpriteManager.AlreadyAdded ( SpriteRoot  sprite)

Returns whether the sprite is already managed by this manager.

Parameters
spriteSprite for which to look.
Returns
True when the sprite is already being managed by this manager.

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.

Parameters
prefabPrefab to be instantiated.
Returns
Reference to the sprite contained in the prafab.

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.

Parameters
prefabPrefab to be instantiated.
positionWhere to place the new sprite.
rotationRotation of the new sprite.
Returns
Reference to the sprite contained in the prafab.

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.

Parameters
toMoveSprite to move behind the reference sprite.
referenceSprite 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.

Parameters
toMoveSprite to move in front of the reference sprite.
referenceSprite 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.)

Parameters
sSprite 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.)

Parameters
sSprite 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()!

Parameters
xyThe coordinates to convert.
Returns
The coordinates converted to UV coordinates.

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()!

Parameters
xThe x-coordinate to convert.
yThe y-coordinate to convert.
Returns
The coordinates converted to UV coordinates.

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()!

Parameters
xyThe values to convert.
Returns
The values converted to UV space.

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()!

Parameters
xThe X-value to convert.
yThe Y-value to convert.
Returns
The values converted to UV space.

Definition at line 131 of file SpriteManager.cs.

void SpriteManager.RemoveSprite ( SpriteRoot  sprite)

Removes the specified sprite from the manager.

Parameters
spriteSprite 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).

Parameters
secondsTime, 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.

Member Data Documentation

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.


The documentation for this class was generated from the following file: