0

在我最后一个问题的后续内容中为了替换 CCribbon,我想画一条简单的线。如何才能做到这一点?(顺便说一句,我已经看过其他以前的问题,但我仍然无法得到它)

谢谢。

4

1 回答 1

0

看看 cocos2d 项目中的 Draw Primitives 测试。简而言之,您可以使用以下代码。

节点的draw方法里面

-(void)draw
{
    [super draw];

    ccDrawColor4B(255, 255, 255, 255) //Color of the line RGBA
    glLineWidth(5.0f) //Stroke width of the line
    ccDrawLine(ccp(0, 0), ccp(10, 10));
}
于 2012-09-26T20:55:30.510 回答