Hello,
I wonder what the ideal length of texture to import in Unity.
It would be the .jpeg, .png or .psd? Or another?
Thanks a lot!
Hello,
I wonder what the ideal length of texture to import in Unity.
It would be the .jpeg, .png or .psd? Or another?
Thanks a lot!
jpeg is lossy compression format.
png is lossless compression format.
psd is format used by photoshop.
So…
For better quality, use png.
For better editability, use psd.
Oh! Thanks a lot! -
The quality of png and psd are identical, they’re both lossless formats.
The psd format, apart from retaining layers making it easier to edit, will be a larger on disk file than png simply because png is a compressed format. But if you’re already using Photoshop there’s not a lot of reasons to not use the psd files straight.
They will produce identical results for the game.
bgolus, Thanks for the clarification.