|
- import arcade
- from desktop_Platform import *
-
- def desktop_loadTextures(p):
- texs = []
- for (id, td) in enumerate(p.c.textureDescriptions):
- tex = arcade.load_texture(
- td.fileName,
- x = td.x,
- y = td.y,
- width = td.width,
- height = td.height
- )
- texs.append(tex)
- #}
- p.textures = texs
- #}
|