0
我有以下代碼來手動設置Box2D世界中(動態)對象的位置(藉助EaselJS繪製)。 不幸的是setTransform
返回此錯誤。Box2D&EaselJS,setTransform返回一個錯誤
Uncaught TypeError: Cannot read property 'position' of undefined
這是代碼
// during drag and drop
if(mouseJoint & isMouseDown) {
mouseJoint.SetTarget(new b2Vec2(mouseX, mouseY));
var body = mouse.getBodyAtMouse();
if(body != null) {
body.SetAngularVelocity(0);
body.SetAngle(0);
body.SetTransform(b2Vec2(10,10), 0);
}
...
真!我現在得到「'未定義'不是一個函數(評估'a.GetAngle()')」,我應該通過什麼作爲第二個參數? –