clear

clear() 清空所有路径。

实例

  1. update: function (dt) {
  2. var ctx = node.getComponent(cc.Graphics);
  3. ctx.clear();
  4. ctx.circle(200,200, 200);
  5. ctx.stroke();
  6. }

返回 绘图组件