Fill
The fill()
method is used to fill the current image (path). The color used is fillColor
.
Note: If the path is not closed, the
fill()
method adds a line from the end of the path to the start point to close the path and then fills the path.
Example
var ctx = node.getComponent(cc.GraphicsComponent);
ctx.rect(20,20,150,100);
ctx.fillColor = cc.Color.GREEN;
ctx.fill();
Return to the Graphics Component Reference documentation.