2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2018-01-31 13:54:44 +00:00
|
|
|
/**
|
|
|
|
* @namespace Phaser.Textures
|
2018-03-29 14:12:32 +00:00
|
|
|
* @property {integer} LINEAR - Linear filter type.
|
|
|
|
* @property {integer} NEAREST - Nearest neighbor filter type.
|
2018-01-31 13:54:44 +00:00
|
|
|
*/
|
2018-01-16 22:28:29 +00:00
|
|
|
|
2018-03-16 17:35:01 +00:00
|
|
|
var Textures = {
|
2018-01-16 22:28:29 +00:00
|
|
|
|
2018-03-16 17:29:39 +00:00
|
|
|
Parsers: require('./parsers'),
|
2018-02-08 04:01:44 +00:00
|
|
|
|
2018-01-16 22:28:29 +00:00
|
|
|
Frame: require('./Frame'),
|
|
|
|
Texture: require('./Texture'),
|
|
|
|
TextureManager: require('./TextureManager'),
|
2018-03-28 14:39:57 +00:00
|
|
|
TextureSource: require('./TextureSource'),
|
|
|
|
|
|
|
|
LINEAR: 0,
|
|
|
|
NEAREST: 1
|
2018-01-16 22:28:29 +00:00
|
|
|
|
|
|
|
};
|
2018-03-16 17:35:01 +00:00
|
|
|
|
|
|
|
module.exports = Textures;
|