标签: python turtle-graphics
我使用Python的turtle模块制作了一个游戏。我要阻止海龟重叠,或者如果它们确实重叠,则将其中一只移到其他位置。我该怎么做?
答案 0 :(得分:0)
您可以使用:
if turtle_1.distance(turtle_2) <= overlap: # your code here
其中overlap为1表示正上方,为10表示仅触摸。
overlap