![]() | |
Texture |
public enum TextureFilteringTypes
Member name | Value | Description |
---|---|---|
Anisotropic_x2 | 2 | Anisotropic filtering with level 2 (compared to linear interpolation Anisotropic filtering improves details when camera angle is low). |
Anisotropic_x4 | 4 | Anisotropic filtering with level 4 (compared to linear interpolation Anisotropic filtering improves details when camera angle is low). |
Anisotropic_x8 | 8 | Anisotropic filtering with level 8 (compared to linear interpolation Anisotropic filtering improves details when camera angle is low). |
Point | -1 | Uses the color of the nearest neighboring pixel (produces square pixels when zoomed in). |
Anisotropic_x16 | 16 | Anisotropic filtering with level 16 (compared to linear interpolation Anisotropic filtering improves details when camera angle is low). |
Bilinear | -2 | Uses the color that is linearly interpolated from the nearest colors from the texture. |
Trilinear | -3 | Uses the color that is linearly interpolated from the nearest colors from the two nearest mip map textures. |