cocos2d-js cc.DrawNode画图参考大全

前端之家收集整理的这篇文章主要介绍了cocos2d-js cc.DrawNode画图参考大全前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


newcc.DrawNode()创建draw对象,画点,线段,多边形

vardrawNode=cc.DrawNode();

this.addChild(drawNode);//加入Layer层
drawNode.clear()//清除节点缓存

drawNode.ctor()//构造函数
drawNode.drawCardinalSpline(config,tension,segments,lineWidth,color)//曲线
//参数说明:
//congfig:点数组
//tension:张力
//segments:段落
//lineWidth:线条宽度
//color:颜色
drawNode.drawCatmullRom(points,0)!important">//同上
drawNode.drawCircle(center,radius,angle,drawLineToCenter,0)!important">//画圆
//参数说明:原点,半径,弧度,分段(越大越接近圆),原点到弧度的线(boolean),线条宽度,颜色
drawNode.drawCubicBezier(origin,control1,control2,destination,0)!important">//画三次贝塞尔曲线
//drawNode.drawCubicBezier(cc.p(s.width-250,40),cc.p(s.width-70,100),cc.p(s.width-30,250),cc.p(s.width-10,s.height-50),10,1,cc.color(0,1));
drawNode.drawQuadBezier(origin,control,0)!important">//画二次贝塞尔曲线参考三次贝塞尔曲线
drawNode.drawDot(pos,0)!important">//画点
//drawNode.drawDot(cc.p(60,20,cc.color(0.5,0.6,1));
drawNode.drawDots(points,0)!important">//画点points点数组
drawNode.drawPoly(verts,fillColor,0)!important">//画多边形
drawNode.drawRect(origin,lineColor)//画矩形
drawNode.drawSegment(from,to,color)
原文链接:https://www.f2er.com/cocos2dx/344112.html

猜你在找的Cocos2d-x相关文章