mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Unload asset bundles on reload
This commit is contained in:
parent
60442e5725
commit
a22ef0f124
@ -140,6 +140,10 @@ namespace NewHorizons
|
|||||||
{
|
{
|
||||||
BodyDict["SolarSystem"] = new List<NewHorizonsBody>();
|
BodyDict["SolarSystem"] = new List<NewHorizonsBody>();
|
||||||
SystemDict["SolarSystem"] = new NewHorizonsSystem("SolarSystem", new StarSystemConfig(null), this);
|
SystemDict["SolarSystem"] = new NewHorizonsSystem("SolarSystem", new StarSystemConfig(null), this);
|
||||||
|
foreach (AssetBundle bundle in AssetBundles.Values)
|
||||||
|
{
|
||||||
|
bundle.Unload(true);
|
||||||
|
}
|
||||||
AssetBundles.Clear();
|
AssetBundles.Clear();
|
||||||
|
|
||||||
Logger.Log("Begin reload of config files...", Logger.LogType.Log);
|
Logger.Log("Begin reload of config files...", Logger.LogType.Log);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user