摘要: 封装一个CCNode,重写draw函数,使用opengl函数绘制直线,done!Line *Line::create(float h,float w,const ccColor4B &colorValue){ Line * result = new Line(); if (result) { result->initLine(h,w, colorValue); result->autorelease(); return result; } CC_SAFE_DELETE(result); return NULL;}vo... 阅读全文
posted @ 2013-04-15 14:52 haroel 阅读(389) 评论(0) 推荐(0) 编辑