如何正确使用apply_impulse?

发布于 2024-11-15 18:58:10 字数 340 浏览 4 评论 0原文

我刚刚开始使用 PyMunk 物理库。我在使用 apply_impulse() 时遇到问题。我这样称呼它:

player.body.apply_impulse(player.body, (10,10), (10,10) )

但是,我收到此错误:

<块引用>

类型错误:apply_impulse() 最多接受 3 个参数(给定 4 个)

为什么会这样以及调用 apply_impulse() 的正确方法是什么?

I'm just starting out with the PyMunk physics library. I'm having trouble using apply_impulse(). I'm calling it like this:

player.body.apply_impulse(player.body, (10,10), (10,10) )

However, I'm getting this error:

TypeError: apply_impulse() takes at most 3 arguments (4 given)

Why is this and what's the correct way to call apply_impulse()?

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

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

发布评论

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

评论(1

ㄖ落Θ余辉 2024-11-22 18:58:10

当您在其对象上调用成员函数时,通常不需要将对象本身作为第一个参数传递。 self 存在于每个成员函数的函数定义中,但不在函数调用中。

看这篇文章:
self 的目的是什么?

When you call a member function on its object you usually don't need to pass the object itself as the first parameter. self is in the function definition of every member function but not in the function call.

see this post:
What is the purpose of self?

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