Research portable Memory game | Исследовать портируемую игру Память
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

desktop.py 327B

il y a 4 mois
il y a 4 mois
il y a 4 mois
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. #}