Is it possible to draw a filled circle with cocos2d ? An outlined circle can be done using the drawCircle() function, but is there a way to fill it in a certain color? Perhaps b
I used this way below.
glLineWidth(2); for(int i=0;i<50;i++){ ccDrawCircle( ccp(s.width/2, s.height/2), i,0, 50, NO); }
I made multiple circle with for loop and looks like a filled circle.