메소드 | 설명 | |
---|---|---|
Draw ( RenderTarget target, |
Draw the sprite to a render target
|
|
GetGlobalBounds ( ) : FloatRect |
Get the global bounding rectangle of the entity. The returned rectangle is in global coordinates, which means that it takes in account the transformations (translation, rotation, scale, ...) that are applied to the entity. In other words, this function returns the bounds of the sprite in the global 2D world's coordinate system.
|
|
GetLocalBounds ( ) : FloatRect |
Get the local bounding rectangle of the entity. The returned rectangle is in local coordinates, which means that it ignores the transformations (translation, rotation, scale, ...) that are applied to the entity. In other words, this function returns the bounds of the entity in the entity's coordinate system.
|
|
Sprite ( ) : System |
Default constructor
|
|
Sprite ( |
Construct the sprite from another sprite
|
|
Sprite ( |
Construct the sprite from a source texture
|
|
Sprite ( |
Construct the sprite from a source texture
|
|
ToString ( ) : string |
Provide a string describing the object
|
메소드 | 설명 | |
---|---|---|
Destroy ( bool disposing ) : void |
Handle the destruction of the object
|
메소드 | 설명 | |
---|---|---|
sfRenderTexture_drawSprite ( IntPtr CPointer, IntPtr Sprite, RenderStates &states ) : void | ||
sfRenderWindow_drawSprite ( IntPtr CPointer, IntPtr Sprite, RenderStates &states ) : void | ||
sfSprite_copy ( IntPtr Sprite ) : IntPtr | ||
sfSprite_create ( ) : IntPtr | ||
sfSprite_destroy ( IntPtr CPointer ) : void | ||
sfSprite_getColor ( IntPtr CPointer ) : Color | ||
sfSprite_getLocalBounds ( IntPtr CPointer ) : FloatRect | ||
sfSprite_getTextureRect ( IntPtr CPointer ) : IntRect | ||
sfSprite_setColor ( IntPtr CPointer, Color Color ) : void | ||
sfSprite_setTexture ( IntPtr CPointer, IntPtr Texture, bool AdjustToNewSize ) : void | ||
sfSprite_setTextureRect ( IntPtr CPointer, IntRect Rect ) : void |
protected Destroy ( bool disposing ) : void | ||
disposing | bool | Is the GC disposing the object, or is it an explicit call ? |
리턴 | void |
public Draw ( RenderTarget target, |
||
target | RenderTarget | Render target to draw to |
states | Current render states | |
리턴 | void |
public Sprite ( |
||
texture | Source texture to assign to the sprite | |
리턴 | System |
public Sprite ( |
||
texture | Source texture to assign to the sprite | |
rectangle | IntRect | Sub-rectangle of the texture to assign to the sprite |
리턴 | System |