Enum TextureFlags
Defines some mixed flags for a particular texture. This corresponds to the AI_MAT_KEY_TEXFLAGS property.
Namespace: SharpAssimp
Assembly: SharpAssimp.dll
Syntax
[Flags]
public enum TextureFlags
Fields
Name | Description |
---|---|
IgnoreAlpha | Explicit request to the application to ignore the alpha channel of the texture. This is mutually exclusive with UseAlpha. |
Invert | The texture's color values have to be inverted (componentwise 1-n). |
UseAlpha | Explicit request to the application to process the alpha channel of the texture. This is mutually exclusive with IgnoreAlpha. These flags are set if the library can say for sure that the alpha channel is used/is not used. If the model format does not define this, iti s left to the application to decide whether the texture alpha channel - if any - is evaluated or not. |