diff --git a/src/tilemaps/Tile.js b/src/tilemaps/Tile.js index 1d1e5ad89..e25ad862e 100644 --- a/src/tilemaps/Tile.js +++ b/src/tilemaps/Tile.js @@ -302,6 +302,19 @@ var Tile = new Class({ */ this.tint = 0xffffff; + /** + * The tint fill mode. + * + * `false` = An additive tint (the default), where vertices colors are blended with the texture. + * `true` = A fill tint, where the vertices colors replace the texture, but respects texture alpha. + * + * @name Phaser.Tilemaps.Tile#tintFill + * @type {boolean} + * @default + * @since 3.61.0 + */ + this.tintFill = false; + /** * An empty object where physics-engine specific information (e.g. bodies) may be stored. *