As is in the title. can anyone navigate me to the necessary file to change the title menu background images? I have a feeling they're animated with other assets from the game which is fine. I just need to know the directory. I only want specific planet types to appear in the title or I can make my own background image.
I never found anything in packed.pak to account for actually rendering this. I believe they're generated and animated on the spot from the C++ side. But I do suspect it reads from celestial.config. For example if it picks a volcanic planet, then it might want this info Code: "volcanic" : { "baseImages" : "/celestial/system/terrestrial/horizon/textures/volcanic_<selector>.png", "maskTextures" : "/celestial/system/terrestrial/horizon/masks/temperate/<mask>_<selector>.png", "maskRange" : [1, 25], "maskPerPlanetRange" : [3, 3] }, I think that code should answer the question of where the images are stored. And sometimes it generates satellites to render which do seem to be affected by "satelliteOrbitalLevels", "satelliteProbability", and "maxSatelliteCount" if you modify those. Now I don't know for a fact that has a real effect, but it does seem like it to me.