phaser - v4.0.0-rc.4
    Preparing search index...

    Type Alias CompressedTextureData

    An object containing the dimensions and mipmap data for a Compressed Texture.

    type CompressedTextureData = {
        compressed: boolean;
        generateMipmap: boolean;
        height: number;
        internalFormat: GLenum;
        mipmaps: MipmapType[];
        width: number;
    }
    Index

    Properties

    compressed: boolean

    Is this a compressed texture?

    generateMipmap: boolean

    Should this texture have mipmaps generated?

    height: number

    The height of the maximum size of the texture.

    internalFormat: GLenum

    The WebGL internal texture format.

    mipmaps: MipmapType[]

    An array of MipmapType objects.

    width: number

    The width of the maximum size of the texture.