Research portable Memory game | Исследовать портируемую игру Память
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
270B

  1. import arcade
  2. # Find a visible tile id at the specified location
  3. def desktop_aux_tileIdAt(p, x, y):
  4. sprites = arcade.get_sprites_at_point([x, y], p.sprites)
  5. if (
  6. len(sprites) != 0 and
  7. sprites[0].visible
  8. ):
  9. return sprites[0].guid
  10. #}
  11. return None
  12. #}