![]() |
Public API Reference |
#include <sprite2d.h>
Inheritance diagram for iSprite2DState:
Public Methods | |
virtual csColoredVertices & | GetVertices ()=0 |
Get the vertex array. More... | |
virtual void | CreateRegularVertices (int n, bool setuv)=0 |
Set vertices to form a regular n-polygon around (0,0), optionally also set u,v to corresponding coordinates in a texture. More... | |
virtual void | SetUVAnimation (const char *name, int style, bool loop)=0 |
Select an UV animation to play. More... | |
virtual void | StopUVAnimation (int idx)=0 |
Stop the animation and show the <idx>-th frame. More... | |
virtual void | PlayUVAnimation (int idx, int style, bool loop)=0 |
Play the animation starting from the <idx>-th frame. More... |
iSprite2DState inherits from iSprite2DFactoryState.
Definition at line 213 of file sprite2d.h.
|
Set vertices to form a regular n-polygon around (0,0), optionally also set u,v to corresponding coordinates in a texture. Large n approximates a circle with radius 1. n must be > 2. |
|
Get the vertex array.
|
|
Play the animation starting from the <idx>-th frame. Set idx to -1 to start it fro its current position. Style: 0 .. use the time values supplied in the frames > 0 .. every <style> millisecond skip to next frame < 0 .. every -1*<style>-th frame skip to next frame Loop: true .. after last frame animations starts over from the beginning false .. after last frame the normal texture is shown |
|
Select an UV animation to play. Set name to 0 to select no animation to show. Style: 0 .. use the time values supplied in the frames > 0 .. every <style> millisecond skip to next frame < 0 .. every -1*<style>-th frame skip to next frame Loop: true .. after last frame animations starts over from the beginning false .. after last frame the normal texture is shown |
|
Stop the animation and show the <idx>-th frame. Set idx to -1 to stop it at its current position. |