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. #}