如何从列表中随机选择项目,然后识别其在列表中的位置?

时间:2018-08-08 01:35:39

标签: python game-physics

我正在使用带有街机插件的python工作。我正在尝试编写一些代码,因此当您单击按钮时它将移动到某个位置。在不知道按钮在列表中的位置的情况下,我无法移动它。我想让python检测到一个地方,以便我可以移动它。请不要告诉我使用其他程序,我知道pygame更好,但是我们只能使用此程序。

  def on_mouse_press(self, x, y, button, modifiers):
    if x > self.letter_button.left and x < self.letter_button.right and y > self.letter_button.bottom and y < self.letter_button.top:
        self.letter_button.center_x = 100
        self.letter_button.center_y = 120

0 个答案:

没有答案