边缘世界 RimWorld

边缘世界 RimWorld

[1.0] Vanilla Factions Expanded - Core
Demonseed Elite 2020 年 1 月 1 日 上午 7:37
Found a major source of lag in your mod.
Hey there. Was wondering why my RimWorld was taking an eternity to load after I added this mod. As a programmer, I did some investigation. I found the source of the problem.

You got this block:
public static bool DualWield = ModsConfig.ActiveModsInLoadOrder.Any(m => m.Name == "Dual Wield");

public static bool FacialStuff = ModsConfig.ActiveModsInLoadOrder.Any(m => m.Name == "Facial Stuff 1.0");

public static bool ResearchTree = ModsConfig.ActiveModsInLoadOrder.Any(m => m.Name == "Research Tree");

public static bool ResearchPal = ModsConfig.ActiveModsInLoadOrder.Any(m => m.Name == "ResearchPal");

public static bool RimCities = ModsConfig.ActiveModsInLoadOrder.Any(m => m.Name == "RimCities");

public static bool RPGStyleInventory = ModsConfig.ActiveModsInLoadOrder.Any(m => m.Name == "[1.0] RPG Style Inventory");

public static bool RunAndGun = ModsConfig.ActiveModsInLoadOrder.Any(m => m.Name == "RunAndGun");

Which causes the game to scan the Active Mod list SEVEN TIMES on start! EVERYTIME you call ModsConfig.ActiveModsInLoadOrder, it SCANS THE LIST.

Create a List(of Object) or something, get the list of active mods from the game ONCE, and run your check to set your flags afterward.

When you have 120+ active mods, this makes a HUGE difference!
< >
正在显示第 1 - 5 条,共 5 条留言
2Dfruity 2020 年 1 月 10 日 下午 7:11 
This mod adds a good 15 minutes to my startup time. Unfortunately I'll have to unsubscribe until this issue is fixed. @demonseed elite thanks for pointing this out.
Miguel V-DF 2020 年 1 月 28 日 上午 10:30 
is this fixed?
Das 2020 年 2 月 5 日 下午 9:11 
Just wanted to bump in case this isn't fixed. There was an update the day after this was posted, but there is no description for the update history.
Silhouette 2020 年 2 月 28 日 下午 4:42 
I'm guessing this is still an issue?
Alfuken 2020 年 9 月 23 日 上午 2:50 
end of September, still no update if the issue is fixed... wow
< >
正在显示第 1 - 5 条,共 5 条留言
每页显示数: 1530 50