textureAtlasLoader is reponsible for managing '.xml' files exported from TexturePacker (https://www.codeandweb.com/texturepacker)
| 52 | |
| 53 | // textureAtlasLoader is reponsible for managing '.xml' files exported from TexturePacker (https://www.codeandweb.com/texturepacker) |
| 54 | type textureAtlasLoader struct { |
| 55 | atlases map[string]*TextureAtlasResource |
| 56 | } |
| 57 | |
| 58 | // Load will load the xml file and the main image as well as add references |
| 59 | // for sub textures/images in engo.Files, subtextures keep their path url (with appended extension from main image path if it does not exist), |
nothing calls this directly
no outgoing calls
no test coverage detected