0
我對cocos2d-js非常陌生,我試圖用 刪除一個簡單的演示,但失敗了。無法從空間中刪除形狀和身體使用cocos-js花栗鼠
var body = new cp.Body(1,cp.momentForBox(1,20,20));
body.setPos(cc.p(100,300));
this._space.addBody(body);
var shape=cp.BoxShape(body,20,20);
shape.setElasticity(0.5);
shape.setFriction(0.8);
this._space.addShape(shape);
var shapeList = body.shapeList;shapeList[0]=null;
body.removeShape(shapeList[0]);
console.log(shapeList);
this._space.removeBody(body);
我完全糊塗了。
如果你可以包含一個完全正常工作(或者說,失敗)的演示,那將是非常棒的。你可以使用像codepen.io這樣的網站。 – thomasfuchs
我把我的項目放在http://zen1995.github.io/cocos2d-js_demo/,你可以在https://github.com/zen1995/cocos2d-js_demo上看到代碼 – zen