Skip to content

Commit 4c5150a

Browse files
committed
Added jsdocs
1 parent 7b04ea3 commit 4c5150a

16 files changed

Lines changed: 1085 additions & 155 deletions

src/textures/FilterMode.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
1+
/**
2+
* @namespace Phaser.Textures.FilterMode
3+
*/
4+
15
var CONST = {
26

7+
/**
8+
* CSV Map Type
9+
*
10+
* @name Phaser.Textures.FilterMode.LINEAR
11+
* @type {number}
12+
* @since 3.0.0
13+
*/
314
LINEAR: 0,
15+
16+
/**
17+
* CSV Map Type
18+
*
19+
* @name Phaser.Textures.FilterMode.NEAREST
20+
* @type {number}
21+
* @since 3.0.0
22+
*/
423
NEAREST: 1
524

625
};

0 commit comments

Comments
 (0)