* Fill next shape with solid color * @param {number} color - color RGB values * @param {number} alpha - alpha value
(color:number, alpha:number = 1.0)
| 196 | * @param {number} alpha - alpha value |
| 197 | */ |
| 198 | public beginFill(color:number, alpha:number = 1.0):void { |
| 199 | this._callDrawMethod('beginFill', [color, alpha]); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Gradient Fill Not Supported yet |
nothing calls this directly
no test coverage detected