Looooong / UnityAsyncImageLoader

Asynchronous Image Loader for Unity
MIT License
194 stars 26 forks source link

Transparency issue vs using unitys native importer #7

Closed timwillhack closed 1 year ago

timwillhack commented 1 year ago

For some reason after using this image loader into a texture when applied to a sprite has a little transparency across the entire image. I'm not sure if its the texture itself or the way unity utilizes it differently than using the built in editor texture importer. I don't know how to configure it in a way that stops this from happening.

LK-Coco commented 1 year ago

This is probably because the alpha accuracy is lost when mipmap is generated. You can try to change it this way
@timwillhack @Looooong

image

Looooong commented 1 year ago

@LK-Coco I think you are correct and this should be applied to the other channels as well. I don't know why I made this mistake in the first place 😞

Looooong commented 1 year ago

This is fixed in the latest commit.