Skip to content

Releases: Auros/SmartImage

Smart Image 0.0.4-beta | Bug Fixes

27 Jun 10:19
Compare
Choose a tag to compare
  • Fixed a bug which caused cached images to deadlock when trying to load sequentially.

Smart Image 0.0.3-beta | Bug Fixes

28 Sep 05:41
Compare
Choose a tag to compare
  • 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

27 Sep 04:50
Compare
Choose a tag to compare
  • 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

24 Aug 05:14
69b5999
Compare
Choose a tag to compare

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.