Image Loader


Put images from HTTP URLs into game objects without managing network layer nor persistency.

Main features:
R ...


by Pulsar Concept


★★ star rating
Price History +

Put images from HTTP URLs into game objects without managing network layer nor persistency.

Main features:
- Script usage with a single line of code.
- Editor usage with preview without need to start play mode.
- Image caching (both disk and memory).

*Current version does not support web player.

Example:

ImageBuilder.Load("http://example.com/image").
Aspect(ImageBuilder.ASPECT_MODE.FIT).
PlaceHolder(myTexture).Retries(5).
TryFromCache(false).SaveInCache(false).
Into(this.gameObject, this.renderer.material);