Values

Target

Allocate a texture that will be used as render target.

Cube

Allocate a cube texture. Might be restricted to power of two textures only.

MipMapped

Activates Mip Mapping for this texture. Might not be available for target textures.

ManualMipMapGen

By default, textures created with MipMapped will have their mipmaps generated when you upload the mipmap level 0. This flag disables this and manually upload mipmaps instead.

IsNPOT

This is a not power of two texture. Automatically set when having width or height being not power of two.

NoAlloc

Don't initialy allocate the texture memory.

Dynamic

Inform that we will often perform upload operations on this texture

AlphaPremultiplied

Assumes that the color value of the texture is premultiplied by the alpha component.

WasCleared

Tells if the target texture has been cleared (reserved for internal engine usage).

Loading

The texture is being currently loaded. Set onLoaded to get event when loading is complete.

Serialize

Allow texture data serialization when found in a scene (for user generated textures)

IsArray

Tells if it's a texture array