deceleration
函数是 Yuka.js 库中 ArriveBehavior
(一个行为组件)的一部分。它用于计算减速到达目标点的速度。该函数将根据当前速度和距离目标点的距离计算所需的减速度。
deceleration(currentVelocity, distance)
currentVelocity
: 当前速度,单位为米每秒(m/s)。distance
: 到达目标点的距离,单位为米(m)。const distance = 10; // 距离目标点10米
const currentVelocity = 5; // 当前速度为5 m/s
const deceleration = ArriveBehavior.deceleration(currentVelocity, distance);
console.log(deceleration); // 输出2.5
currentVelocity
必须为正数。