improve ts type hints for Phaser.Tilemaps.Types.StyleConfig

This commit is contained in:
Martin Lindhe 2019-03-09 11:51:00 +01:00
parent 9db9511bf1
commit 38444d3443

View file

@ -2,7 +2,7 @@
* @typedef {object} Phaser.Tilemaps.Types.StyleConfig * @typedef {object} Phaser.Tilemaps.Types.StyleConfig
* @since 3.0.0 * @since 3.0.0
* *
* @property {?number} [tileColor=blue] - Color to use for drawing a filled rectangle at non-colliding tile locations. If set to null, non-colliding tiles will not be drawn. * @property {?(Phaser.Display.Color|number|null)} [tileColor=blue] - Color to use for drawing a filled rectangle at non-colliding tile locations. If set to null, non-colliding tiles will not be drawn.
* @property {?number} [collidingTileColor=orange] - Color to use for drawing a filled rectangle at colliding tile locations. If set to null, colliding tiles will not be drawn. * @property {?(Phaser.Display.Color|number|null)} [collidingTileColor=orange] - Color to use for drawing a filled rectangle at colliding tile locations. If set to null, colliding tiles will not be drawn.
* @property {?number} [faceColor=grey] - Color to use for drawing a line at interesting tile faces. If set to null, interesting tile faces will not be drawn. * @property {?(Phaser.Display.Color|number|null)} [faceColor=grey] - Color to use for drawing a line at interesting tile faces. If set to null, interesting tile faces will not be drawn.
*/ */