我正在做一个演示,它与此页面中的一个示例非常相似(http://chandlerprall.github.io/Physijs/examples/body.html)。只是一个盒子掉下来了。但我想计算从盒子开始下落到落地所用的时间,这样我就可以计算速度。有没有办法做到这一点??请帮忙。
问问题
138 次
1 回答
0
这是一个算法:
Animate : function (cb) {
//the above is whatever your initial animation function is
THREE.Clock.startTime = (new Date()).getMilliseconds();
if (objects touch ground) {
var now = (new Date()).getMilliseconds();
THREE.Clock.duration = now - THREE.Clock.startTime;
}
}
于 2013-08-13T21:23:01.583 回答