Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我最后一个问题的后续内容中,为了替换 CCribbon,我想画一条简单的线。如何才能做到这一点?(顺便说一句,我已经看过其他以前的问题,但我仍然无法得到它)
谢谢。
看看 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)); }