mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
Mesh now supports the tintFill
property
This commit is contained in:
parent
4fb63fd405
commit
0428ecc430
1 changed files with 10 additions and 0 deletions
|
@ -149,6 +149,16 @@ var Mesh = new Class({
|
|||
* @since 3.0.0
|
||||
*/
|
||||
this.alphas = new Float32Array(alphas);
|
||||
|
||||
/**
|
||||
* Fill or additive mode used when blending the color values?
|
||||
*
|
||||
* @name Phaser.GameObjects.Mesh#tintFill
|
||||
* @type {boolean}
|
||||
* @default false
|
||||
* @since 3.11.0
|
||||
*/
|
||||
this.tintFill = false;
|
||||
}
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue