gpt4 book ai didi

python - 如何使用 Pygame 矩形

转载 作者:太空宇宙 更新时间:2023-11-04 08:12:52 25 4
gpt4 key购买 nike

我一直在试验 Pygame,遇到了一个我找不到答案的问题。在 this paste ,展示了我的基本游戏框架。我怎样才能正确完成我的 ballSnapLeft() 定义?

编辑:我不是在寻找要完成的代码,而是在寻找可以解释“Rect”类(?)如何工作以及如何应用它的人。

Edit2:我曾尝试使用 x 和 y 坐标来这样做,但我认为有一种更简单的方法可以实际工作,而不是使用粗略的坐标。

最佳答案

来自 Making Games With Python and Pygame :

myRect.left The int value of the X-coordinate of the left side of therectangle.

myRect.rightThe int value of the X-coordinate of the right side of the rectangle.

myRect.topThe int value of the Y-coordinate of the top side of the rectangle.

myRect.bottomThe int value of the Y-coordinate of the bottom side.

因为所有这些属性都返回整数,这可能就是您的代码无法正常工作的原因。

此外,如果您使用 ballSnapLeft() 的目标是将球移动到远离玩家的位置,则 ballRect.right = playerRect.left - distance 只会更改矩形的 X 坐标。要使球也在 Y 坐标上移动,您可以做类似的事情

def ballSnapTop():
ballRect.top = playerRect.bottom - distance

关于python - 如何使用 Pygame 矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19215233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com