gpt4 book ai didi

python - 我如何使目标移动? ( python , turtle )

转载 作者:行者123 更新时间:2023-12-04 17:16:54 24 4
gpt4 key购买 nike

这是代码。我不知道为什么,但是当我运行代码时目标没有移动。我对编码真的很陌生,所以如果这很愚蠢,请原谅。非常感谢您的帮助。

    if isCollision(player, goal):
goal.setposition(random.randint(-300, 300), random.randint(-300, 300))
goal.right(random.randint(0,360))
goal.forward(1)

这不应该让目标移动吗?代码中未检测到任何错误。这是代码的链接:https://pastebin.com/mczU1xpu

最佳答案

尝试移动它

setx()
sety()

使用“sety()”可以控制y轴,使用“setx()”可以控制x轴

而不是使用 goal.setposition(random.randint(-300, 300), random.randint(-300, 300)) 使用 goal.goto(random.randint( -300, 300), random.randint(-300, 300))

关于python - 我如何使目标移动? ( python , turtle ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68515120/

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