Assuming all images are the same size, what I've discovered so far, when using high resolution images.
Whole:
- Fewer PSprites active, less maintenance, possible VRAM usage
- Less chance to override a PSprite accidentally
- Slower loading without precaching (especially if larger/high resolution)
- Potentially larger file size and wasted space
In Pieces:
- Less precaching
- Fewer files, smaller package, potentially more optimized
- More maintenance, PSprites and possible VRAM usage
- Chance to override existing PSprites when combining with other mods
The images in particular are pretty large too. At least 512 px or larger in dimensions, and in high resolutions. Which would be more efficient in general?
I ask because what I'm trying to do is optimize my mod so it runs faster in general. It feels like it's coming down to slow-downs immediately versus slow-downs later. In pieces definitely may compound issues with crazier scenarios like slaughtermaps, since more overlays means more code executed.