返回介绍

WheelCollider.ConfigureVehicleSubsteps 配置车辆子步参数

发布于 2019-12-18 15:38:46 字数 1856 浏览 1132 评论 0 收藏 0

JavaScript => public function ConfigureVehicleSubsteps(speedThreshold: float, stepsBelowThreshold: int, stepsAboveThreshold: int): void;
C# => public void ConfigureVehicleSubsteps(float speedThreshold, int stepsBelowThreshold, int stepsAboveThreshold);

Parameters 参数

speedThresholdThe speed threshold of the sub-stepping algorithm.
子步算法的速度阈值。
stepsBelowThresholdAmount of simulation sub-steps when vehicle's speed is below speedThreshold.
当车辆的速度是在速度阈值之下时,子步的模拟数。
stepsAboveThresholdAmount of simulation sub-steps when vehicle's speed is above speedThreshold.
当车辆的速度是在速度阈值之上时,子步的模拟数。

Description 描述

Configure vehicle sub-stepping parameters.

配置车辆子步参数。

Every time a fixed update happens, the vehicle simulation splits this fixed delta time into smaller sub-steps and calculates suspension and tire forces per each smaller delta. Then, it would sum up all resulting forces and torques, integrate them, and apply to the vehicle's body.

每次FixedUpdate更新,该车辆模拟分割固定增量时间到较小的子步并每小增量计算悬挂和轮胎力。然后会综合所又作用的力和扭矩,并应用到车体。

Using this function you can customize how many sub-steps will be performed by the simulation above and below the speed threshold.

使用该函数你可以自定义通过多少子步来执行模拟上下速度阈值。

It's enough to call this function only once per each vehicle, as it actually sets parameters to the vehicle but not to a wheel.

每辆车只能调用一次该函数,实际上是设置车辆的参数,而不是车轮。

WheelCollider

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文