Releases: Auros/SmartImage
Releases · Auros/SmartImage
Smart Image 0.0.4-beta | Bug Fixes
- Fixed a bug which caused cached images to deadlock when trying to load sequentially.
Smart Image 0.0.3-beta | Bug Fixes
- Ensured that source validation occurs before returning the loading indicator
- Fixed a bug where a smart frame can be null and tried to be destroyed
SmartImage 0.0.2-beta | Loading Indicators
- Added loading indicators
- Will show the static or animated frames assigned to that property as an image is loading. Great for larger images and GIFs.
Usage:
[SerializeField]
private SmartImageManager _smartImageManager;
[SerializeField]
private Sprite[] _loadingIndicatorFrames;
private void Awake()
{
// Must be at least one sprite.
_smartImageManager.LoadingIndicator = SmartSprite.Create(_loadingIndicatorFrames, 0.5f);
}
Initial Beta Release
This is the first release of SmartImage! I plan to add more, and I doubt everything works as intended, which is why it's a beta.