Plugin will allow developers to download multiple images at runtime from the server and cache them in memory
How Plugin Works :
When the developers call the plugin to download an image with a url then the plugin will first check in the in memory cache whether any image for the url exists or not. If it exists then the plugin will return the image from the cache itself. If it does not exist inside in memory then the plugin will download the image from the server. After completing download image will be returned to the unity. Whole process of downloading images , storing and retrieving images happens in the background thread only so no impact on the main thread.
Features:
1. Download multiple images in parallel in background thread
2. Cache multiple images in memory to access the images faster in successive uses
3. Easy C# api to download and fetch images