Ben_2
1
How does one import on load vs import on build in the Unity settings? Support said I could find these options in Unity's preferences but I'm unable to locate them on any of the menus/dialogs.
I think you're referring to "Compress textures on import" feature, which you can find under Edit->Preferences.
We can import textures in two steps. First we read the image file (=fast). Then we convert it to a DDS texture (=slow). We used to always do both steps on import. However, people found that very annoying, especially when you want to update a photoshop 30 times. To make those users happy, we added an option that would delay part2 of the process to when you actually make a build.