| 版权声明:本文为博主原创文章,未经博主允许不得转载. 在Box2D中碰撞事件由b2ContactListener类函数实现,b2ContactListener是Box2D提供的抽象类,它的抽象函数: /// Called when two fixtures begin to touch.两个物体开始接触时会响应,但只调用一次. virtual void BeginContact(b2Contact* contact) { B2_NOT_USED(contact); } /// Calle…
function GetParameterValueByName(parametername) { var reg = new RegExp("(^|&)" + parametername + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return null; } 使用…