You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found by one of our internal artists. There was a model that had a bunch of 2048 x 2048 textures, but also had a handful of odd-size things like 349 x 150 or some such. The controls were set for 4x downsampling, and the compressor crashes with a message "width must be a positive integer." It was dividing the image dimensions by 4, not rounding the result, and throwing an exception on the resulting invalid image size.
Ideally, it should not crash in this situation, for example it could round off the smaller image size.
As a bonus, it would be great to have some option to only downsample the larger images that need downsampling, and ignore the smaller images. Deselecting them manually from the list is a tedious process for models with lots of textures, perhaps there could be a filter to select images of a certain size or minimum size.
The text was updated successfully, but these errors were encountered:
This would mean that an image dimension of 2001 pixels for example wouldn't cut in half to 1000.5 or even 1000, but would end up being 1024 becoming a power of two. This seems like it would benefit the output models.
Found by one of our internal artists. There was a model that had a bunch of 2048 x 2048 textures, but also had a handful of odd-size things like 349 x 150 or some such. The controls were set for 4x downsampling, and the compressor crashes with a message "width must be a positive integer." It was dividing the image dimensions by 4, not rounding the result, and throwing an exception on the resulting invalid image size.
Ideally, it should not crash in this situation, for example it could round off the smaller image size.
As a bonus, it would be great to have some option to only downsample the larger images that need downsampling, and ignore the smaller images. Deselecting them manually from the list is a tedious process for models with lots of textures, perhaps there could be a filter to select images of a certain size or minimum size.
The text was updated successfully, but these errors were encountered: