Aiv Fast2D  1.0.4
Public Member Functions | List of all members
Aiv.Fast2D.InstancedSprite Class Reference
Inheritance diagram for Aiv.Fast2D.InstancedSprite:
Aiv.Fast2D.Sprite Aiv.Fast2D.Mesh Aiv.Fast2D.Mesh

Public Member Functions

 InstancedSprite (float width, float height, int instances)
 Sprite specialization which offer hardware accelerated instancing. Useful to render multiple mesh at time reducing draw call at minimum (ex. Particles, grasses, etc...) More...
 
void SetPositionPerInstance (int instanceId, Vector2 position, bool uploadImmediatly=false)
 Set the position for the specified instance. More...
 
Vector2 GetPositionPerInstance (int instanceId)
 Retrieve current position for the specified instance More...
 
void UpdatePositionForAllInstances ()
 Upload all the instance positions to the GPU. More...
 
void SetScale (int instanceId, Vector2 scale, bool uploadImmediatly=false)
 Set the scaling for the specified instance. More...
 
Vector2 GetScale (int instanceId)
 Retrieve the current scaling for the specified intance. More...
 
void UpdateScaleForAllInstances ()
 Upload all the instance scaling data to the GPU. More...
 
void SetAdditiveTintPerInstance (int instanceId, Vector4 color, bool uploadImmediatly=false)
 Set the additive tint for the specified instance. More...
 
Vector4 GetAdditiveTintPerInstance (int instanceId)
 Retrieve the current additive tint for the specified intance. More...
 
void UpdateAdditiveTintForAllInstances ()
 Upload all the instance additive tint data to the GPU. More...
 
void SetMultiplyTintPerInstance (int instanceId, Vector4 color, bool uploadImmediatly=false)
 Set the multiply tint for the specified instance. More...
 
Vector4 GetMultiplyTintPerInstance (int instanceId)
 Retrieve the current multiply tint for the specified intance. More...
 
void UpdateMultiplyTintForAllInstances ()
 Upload all the instance multiply tint data to the GPU. More...
 
override void DrawWireframe (Vector4 color, float tickness=0.02f)
 
- Public Member Functions inherited from Aiv.Fast2D.Sprite
 Sprite (float width, float height)
 Sprite class is a Quad (mesh made by two triangles) More...
 
void SetAdditiveTint (int r, int g, int b, int a)
 Color tint added during Draw phase, after base color (or texture) and multiply tint. More...
 
void SetAdditiveTint (float r, float g, float b, float a)
 Color tint added during Draw phase, after base color (or texture) and multiply tint. More...
 
void SetAdditiveTint (Vector4 color)
 Color tint added during Draw phase, after base color (or texture) and multiply tint. More...
 
void SetMultiplyTint (float r, float g, float b, float a)
 Color tint used as multiplier during Draw phase, after base color (or texture). More...
 
void SetMultiplyTint (int r, int g, int b, int a)
 Color tint used as multiplier during Draw phase, after base color (or texture). More...
 
void SetMultiplyTint (Vector4 color)
 Color tint added during Draw phase, after base color (or texture). More...
 
override void DrawColor (Vector4 color)
 Draw the sprite filling it with this color More...
 
override void DrawTexture (Texture tex)
 Draw the whole texture More...
 
void DrawTexture (Texture tex, int xOffset, int yOffset)
 Draw a texture starting at specific offset to the full size of the texture More...
 
void DrawTexture (Texture tex, int xOffset, int yOffset, int width, int height)
 Draw a texture starting at specific offset to a specific size More...
 
 Sprite (float width, float height)
 Sprite class is a Quad (mesh made by two triangles) More...
 
void SetAdditiveTint (int r, int g, int b, int a)
 Color tint added during Draw phase, after base color (or texture) and multiply tint. More...
 
void SetAdditiveTint (float r, float g, float b, float a)
 Color tint added during Draw phase, after base color (or texture) and multiply tint. More...
 
void SetAdditiveTint (Vector4 color)
 Color tint added during Draw phase, after base color (or texture) and multiply tint. More...
 
void SetMultiplyTint (float r, float g, float b, float a)
 Color tint used as multiplier during Draw phase, after base color (or texture). More...
 
void SetMultiplyTint (int r, int g, int b, int a)
 Color tint used as multiplier during Draw phase, after base color (or texture). More...
 
void SetMultiplyTint (Vector4 color)
 Color tint added during Draw phase, after base color (or texture). More...
 
override void DrawColor (Vector4 color)
 Draw the sprite filling it with this color More...
 
override void DrawTexture (Texture tex)
 Draw the whole texture More...
 
void DrawTexture (Texture tex, int xOffset, int yOffset)
 Draw a texture starting at specific offset to the full size of the texture More...
 
void DrawTexture (Texture tex, int xOffset, int yOffset, int width, int height)
 Draw a texture starting at specific offset to a specific size More...
 
override void DrawWireframe (Vector4 color, float tickness=0.02F)
 
- Public Member Functions inherited from Aiv.Fast2D.Mesh
delegate void ShaderSetupHook (Mesh mesh)
 
 Mesh (Shader shader=null, int numberOfAxis=2)
 
void Update ()
 
void UpdateVertex ()
 
void UpdateUV ()
 
void UpdateVertexColor ()
 
void Bind ()
 
virtual void DrawTexture (int textureId)
 
virtual void DrawColor (float r, float g, float b, float a=1)
 Draw the sprite filling it with this color More...
 
void DrawColor (int r, int g, int b, int a=255)
 Draw the sprite filling it with this color More...
 
void DrawWireframe (float r, float g, float b, float a=1, float tickness=0.02f)
 
void DrawWireframe (int r, int g, int b, int a=255, float tickness=0.02f)
 
void Draw (ShaderSetupHook hook=null)
 
void DrawRenderTexture (RenderTexture rt)
 Allow to draw a RenderTexture object. More...
 
void Dispose ()
 

Additional Inherited Members

- Public Attributes inherited from Aiv.Fast2D.Mesh
float[] v
 
float[] uv
 
float[] vc
 
bool hasVertexColors
 
Shader shader
 
Vector2 position = Vector2.Zero
 
Vector2 scale = Vector2.One
 
Vector2 pivot = Vector2.Zero
 
Camera Camera
 
bool noMatrix
 
- Protected Member Functions inherited from Aiv.Fast2D.Mesh
int NewFloatBuffer (int attribArrayId, int elementSize, float[] data, int divisor=0)
 
void UpdateFloatBuffer (int bufferId, float[] data, int offset=0)
 
virtual void ApplyMatrix ()
 
- Protected Attributes inherited from Aiv.Fast2D.Mesh
ShaderSetupHook shaderSetupHook
 
int numberOfAxis
 
bool requireUseTexture
 
int instances
 
- Properties inherited from Aiv.Fast2D.Sprite
float Width [get]
 Get the Width of this sprite More...
 
float Height [get]
 Get the Height of this sprite More...
 
bool FlipX [get, set]
 Get / Set the orizontal orientation of this Sprite More...
 
bool FlipY [get, set]
 Get / Set the verical orientation of this Sprite More...
 
- Properties inherited from Aiv.Fast2D.Mesh
float Rotation [get, set]
 
float EulerRotation [get, set]
 
int Instances [get]
 

Constructor & Destructor Documentation

Aiv.Fast2D.InstancedSprite.InstancedSprite ( float  width,
float  height,
int  instances 
)
inline

Sprite specialization which offer hardware accelerated instancing. Useful to render multiple mesh at time reducing draw call at minimum (ex. Particles, grasses, etc...)

Parameters
widththe width used for each instance
heightthe height used for each instance
instancesnumber of instances to be loaded

Member Function Documentation

override void Aiv.Fast2D.InstancedSprite.DrawWireframe ( Vector4  color,
float  tickness = 0.02f 
)
inlinevirtual

Reimplemented from Aiv.Fast2D.Sprite.

Vector4 Aiv.Fast2D.InstancedSprite.GetAdditiveTintPerInstance ( int  instanceId)
inline

Retrieve the current additive tint for the specified intance.

Parameters
instanceIdthe instance id
Returns
Vector4 Aiv.Fast2D.InstancedSprite.GetMultiplyTintPerInstance ( int  instanceId)
inline

Retrieve the current multiply tint for the specified intance.

Parameters
instanceIdthe instance id
Returns
Vector2 Aiv.Fast2D.InstancedSprite.GetPositionPerInstance ( int  instanceId)
inline

Retrieve current position for the specified instance

Parameters
instanceIdthe instance id
Returns
Vector2 Aiv.Fast2D.InstancedSprite.GetScale ( int  instanceId)
inline

Retrieve the current scaling for the specified intance.

Parameters
instanceIdthe instance id
Returns
void Aiv.Fast2D.InstancedSprite.SetAdditiveTintPerInstance ( int  instanceId,
Vector4  color,
bool  uploadImmediatly = false 
)
inline

Set the additive tint for the specified instance.

Parameters
instanceIdthe instance id
colorthe color to be added
uploadImmediatlyif data has to be immediatly uploaded to the GPU. if false rember to call
See also
UpdateAdditiveTintForAllInstances
void Aiv.Fast2D.InstancedSprite.SetMultiplyTintPerInstance ( int  instanceId,
Vector4  color,
bool  uploadImmediatly = false 
)
inline

Set the multiply tint for the specified instance.

Parameters
instanceIdthe instance id
colorthe color to be added
uploadImmediatlyif data has to be immediatly uploaded to the GPU. if false rember to call
See also
UpdateMultiplyTintForAllInstances
void Aiv.Fast2D.InstancedSprite.SetPositionPerInstance ( int  instanceId,
Vector2  position,
bool  uploadImmediatly = false 
)
inline

Set the position for the specified instance.

Parameters
instanceIdthe instance id
positionthe instance position
uploadImmediatlyif data has to be immediatly uploaded to the GPU. if false rember to call
See also
UpdatePositionForAllInstances
void Aiv.Fast2D.InstancedSprite.SetScale ( int  instanceId,
Vector2  scale,
bool  uploadImmediatly = false 
)
inline

Set the scaling for the specified instance.

Parameters
instanceIdthe instance id
scalethe scaling vector
uploadImmediatlyif data has to be immediatly uploaded to the GPU. if false rember to call
See also
UpdateScaleForAllInstances
void Aiv.Fast2D.InstancedSprite.UpdateAdditiveTintForAllInstances ( )
inline

Upload all the instance additive tint data to the GPU.

void Aiv.Fast2D.InstancedSprite.UpdateMultiplyTintForAllInstances ( )
inline

Upload all the instance multiply tint data to the GPU.

void Aiv.Fast2D.InstancedSprite.UpdatePositionForAllInstances ( )
inline

Upload all the instance positions to the GPU.

void Aiv.Fast2D.InstancedSprite.UpdateScaleForAllInstances ( )
inline

Upload all the instance scaling data to the GPU.


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