enum AddressMode : Enum<AddressMode>
| Member | Description |
|---|---|
REPEAT |
Repeat the texture.
When the texture coordinate is outside the range of 0, 1, this mode will use pixels from the opposite edge of the texture.
|
MIRRORED_REPEAT |
Mirrored repeat of the texture.
Similar to AddressMode.REPEAT, but mirrors the repeated texture outside the range of 0, 1. This ensures the use of pixels on the same side of the texture as the edge.
|
CLAMP_TO_EDGE |
Clamp the texture coordinates to the edge of the texture.
When the texture coordinate is outside the range of 0, 1, this mode will take the value of the pixel closest to the edge of the texture.
|
mode
: Int
[Get] |
Signature
val mode: Int |