2013-04-17 51 views

回答

0

找到它。我可以在函數內創建一個監聽器並覆蓋它自己的函數/屬性。

var listener = new b2ContactListener  
listener.BeginContact = function (contact) { 
    //console.log(contact.GetFixtureA().GetBody().monster); 
} 
listener.EndContact = function (contact) { 
    //console.log(contact.GetFixtureA().GetBody().GetUserData()); 
} 
listener.PostSolve = function (contact, impulse) { 

} 
listener.PreSolve = function (contact, oldManifold) { 

} 

來源:http://blog.sethladd.com/2011/09/box2d-collision-damage-for-javascript.html

相關問題