* defines the color used to tint the bitmap text * @public * @type {Color} * @see Renderable#tint
()
| 306 | * @see Renderable#tint |
| 307 | */ |
| 308 | get fillStyle() { |
| 309 | return this.tint; |
| 310 | } |
| 311 | set fillStyle(value) { |
| 312 | if (value instanceof Color) { |
| 313 | this.tint.copy(value); |