mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 09:03:29 +00:00
26 lines
554 B
TypeScript
26 lines
554 B
TypeScript
|
/**
|
||
|
*
|
||
|
* @class Phaser.TextureSource
|
||
|
* @constructor
|
||
|
* @param {object} source
|
||
|
* @param {number} scaleMode
|
||
|
*/
|
||
|
export default class TextureSource {
|
||
|
texture: any;
|
||
|
compressionAlgorithm: any;
|
||
|
resolution: number;
|
||
|
readonly width: number;
|
||
|
readonly height: number;
|
||
|
image: any;
|
||
|
scaleMode: any;
|
||
|
premultipliedAlpha: boolean;
|
||
|
mipmap: boolean;
|
||
|
renderable: boolean;
|
||
|
isPowerOf2: boolean;
|
||
|
glTexture: any;
|
||
|
glTextureIndex: number;
|
||
|
glLastUsed: number;
|
||
|
glDirty: boolean;
|
||
|
constructor(texture: any, source: any);
|
||
|
}
|