Python——如何将乌龟运动限制在一定大小的窗口内?
发布时间:2022-07-14 11:42:12 247
相关标签: # node.js
我对 python 比较陌生,作为一个练习项目,我正在制作一个类似于蛇的游戏,用户可以在其中移动乌龟,目标是吃尽可能多的物体。现在我正试图让乌龟在离开我定义的边界时暂停。澄清一下,我所说的边界与足球场周围的边界相同。当球出界时,比赛必须暂停。因此,在这种情况下,当海龟向预定义窗口/边框的外部移动时,游戏会暂停(海龟停止)。我将不胜感激有关此的一些指导。提前致谢!
def exit():
turtle.done()
def outofbounds():
if snake.xcor() < -225:
print("out of bounds")
exit()
elif snake.xcor() < 225:
print("out of bounds")
exit()
if snake.ycor() < -225:
print("out of bounds")
exit()
elif snake.ycor() < 225:
print("out of bounds")
exit()
outofbounds()
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报