摘要:
封装一个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... 阅读全文