TextureAddressingMode Enumeration |
Texture addressing modes.
Namespace: NeoAxisAssembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax[FlagsAttribute]
public enum TextureAddressingMode
Members| Member name | Value | Description |
|---|
| WrapU | 1 | |
| WrapV | 2 | |
| WrapW | 4 | |
| Wrap | 7 | Texture wraps at values outside 0.0-1.0. |
| MirrorU | 8 | |
| MirrorV | 16 | |
| MirrorW | 32 | |
| Mirror | 56 | Texture mirrors (flips) at joins over 1.0. |
| ClampU | 64 | |
| ClampV | 128 | |
| ClampW | 256 | |
| Clamp | 448 | Texture clamps at 1.0. |
| BorderU | 512 | |
| BorderV | 1,024 | |
| BorderW | 2,048 | |
| Border | 3,584 | Texture coordinates outside the range [0.0, 1.0] are set to the border colour. |
See Also