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
I've noticed the mod takes a bit to get going even after all the assets are loaded in. Maybe an extra 10-20 seconds or so. When I loaded a save with logging turned on it took a very long time, multiple minutes, and then the chat said [XmlLayout] Warning: 'nil' is not a valid Color value. <99540>. I believe writing all ~10k errors to the log file is probably what slowed it down so much more. I don't know if they're related to the normal slow load, but I assume they aren't good.
The text was updated successfully, but these errors were encountered:
Starting the mod with logging, especially XML logging, is going to be very slow. Sending a lot of simultaneous log statements in a single frame is very very slow in TTS, and the XML logging does all of that on the very first frame.
Starting without logging, the survivor board added last major update is causing the additional load time. It's because of the massive XML UI we're creating all at the beginning. Unfortunately there's not much we can do about this unless TTS decides to make their XML UI loading faster. The only way to make it faster would be to display fewer survivor slots, or reduce the amount of stuff we show on each slot, neither of which I'm willing to sacrifice.
I've noticed the mod takes a bit to get going even after all the assets are loaded in. Maybe an extra 10-20 seconds or so. When I loaded a save with logging turned on it took a very long time, multiple minutes, and then the chat said
[XmlLayout] Warning: 'nil' is not a valid Color value. <99540>
. I believe writing all ~10k errors to the log file is probably what slowed it down so much more. I don't know if they're related to the normal slow load, but I assume they aren't good.The text was updated successfully, but these errors were encountered: