如何确定某种力量是否正在产生影响

发布于 2024-10-24 04:49:37 字数 186 浏览 6 评论 0原文

我正在制作一款游戏,其中我正在创建一个动画系统,该系统会根据角色的速度加速。

问题是这对于跑步机的实例不起作用。

我没有跑步机的速度,但我有跑步机和角色之间的摩擦力。

我正在尝试确定是否有某种力量正在发挥作用。仅知道施加到物体上的力、物体的重量和速度,您如何确定单个力是否对其速度产生影响,如果是,影响有多大?

I'm making a game in which I'm creating an animation system that speeds up based on the velocity of the character.

The problem is this won't work for the instance of a treadmill.

I do not have the speed of the treadmill, but I do have the force of the friction between the treadmill and the character.

I'm trying to determine if a force is making a difference. Knowing Only the forces that are being applied to an object, its weight, and its velocity, how would you determine if a single force is making a difference in it's velocity, and if so, how much?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

z祗昰~ 2024-10-31 04:49:37
F = m*a

a = d/dt v

有限差异:

a = (v2-v1)/dt

因此关系:

F = m * (v2-v1)/dt

我希望这有帮助:-)

F = m*a

a = d/dt v

With finite differences:

a = (v2-v1)/dt

And therefore the relationship:

F = m * (v2-v1)/dt

I hope, this helps :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文