phaser/src/textures/const.js

30 lines
552 B
JavaScript
Raw Normal View History

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}
*/
2017-05-20 01:16:45 +00:00
var CONST = {
2018-02-08 04:01:44 +00:00
/**
* Linear filter type.
2018-02-08 04:01:44 +00:00
*
* @name Phaser.Textures.LINEAR
* @type {integer}
2018-02-08 04:01:44 +00:00
* @since 3.0.0
*/
2017-05-20 01:16:45 +00:00
LINEAR: 0,
2018-02-08 04:01:44 +00:00
/**
* Nearest neighbor filter type.
2018-02-08 04:01:44 +00:00
*
* @name Phaser.Textures.NEAREST
* @type {integer}
2018-02-08 04:01:44 +00:00
* @since 3.0.0
*/
2017-05-20 01:16:45 +00:00
NEAREST: 1
};
2017-07-04 12:23:58 +00:00
module.exports = CONST;