I have searched and searched and not found anything that works for me. How can I draw a continuously line with a gradient in cocos2d-iphone? I have tried CCRibbon but then I get gaps, and I have tried to draw multiple aligned lines in the draw method but with different alpha vales, but my draw method does not react to setting the alpha (it is always 100% alpha, see my draw method here under). How can I do this please?
- (void)draw {
glEnable(GL_LINE_SMOOTH);
glColor4ub(0,255,255,50);
ccDrawLine( ccp(0 - 5, 0 - 5), ccp(200 - 5, 300 - 5) );
}
Thank you
Søren