私はデモに取り組んでいます。このページ ( http://chandlerprall.github.io/Physijs/examples/body.html ) の 1 つの例と非常によく似ています。箱が落ちるだけです。しかし、速度を計算できるように、箱が落下し始めてから地面に着くまでの時間を計算したいと思います。それを行う方法はありますか?? 助けてください。
質問する
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 に答える