Research portable Memory game | Исследовать портируемую игру Память
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

desktop.py 327B

4ヶ月前
4ヶ月前
4ヶ月前
1234567891011121314151617
  1. import arcade
  2. from desktop_Platform import *
  3. def desktop_loadTextures(p):
  4. texs = []
  5. for (id, td) in enumerate(p.c.textureDescriptions):
  6. tex = arcade.load_texture(
  7. td.fileName,
  8. x = td.x,
  9. y = td.y,
  10. width = td.width,
  11. height = td.height
  12. )
  13. texs.append(tex)
  14. #}
  15. p.textures = texs
  16. #}