Enum TextureCoordinateMode
Texture Coordinate Wrap Behaviour Yak2D does not support border pixel or solid colour texture coordinate wrap
Namespace: Yak2D
Assembly: Yak2D.Api.dll
Syntax
public enum TextureCoordinateMode : int
Fields
| Name | Description |
|---|---|
| Mirror | Coordinate Mirroring -> values over 1 start decreasing again to 0, values under 0 start increasing again towards 1 |
| None | Does not define any behaviour, represents null / no option only Note: Yak2D does not support border pixel or solid colour texture coordinate wrap |
| Wrap | Coordinates Wrap -> values over 1 wrap around to 0, values under 0 wrap around to 1 |