在我的上一个问题后面,this,替换CCRibbon我想画一条简单的线。如何才能做到这一点? (顺便说一句,我看过其他先前的问题,但我仍然无法得到它)
感谢。
答案 0 :(得分: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));
}