为了账号安全,请及时绑定邮箱和手机立即绑定

如何让一个圆圈跟随鼠标指针?

如何让一个圆圈跟随鼠标指针?

慕姐8265434 2021-09-25 10:12:25
我正在尝试使用 Python 制作 2D 射击游戏tkinter。这是我的进步:from tkinter import *root = Tk()c = Canvas(root, height=500, width=500, bg='blue')c.pack()circle1x = 250circle1y = 250circle2x = 250circle2y = 250circle1 = c.create_oval(circle1x, circle1y, circle1x + 10, circle1y + 10, outline='white')circle2 = c.create_rectangle(circle2x, circle2y,circle2x + 10, circle2y + 10)pos1 = c.coords(circle1)pos2 = c.coords(circle2)c.move(circle1, 250 - pos1[0], 250 - pos1[2])c.move(circle2, 250 - pos1[0], 250 - pos1[2])beginWall = c.create_rectangle(0, 200, 500, 210, outline='white')def move_circle(event):   passc.bind('<Motion>', move_circle)root.mainloop()但我试图使函数调用的move_circle化妆circle1和circle2跟随鼠标指针。像这样的东西c.goto(circle1, x, y)。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 252 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信