mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Add insulating volumes
This commit is contained in:
parent
9d5b955bdf
commit
b25d13e5e8
@ -71,6 +71,13 @@ namespace NewHorizons.Builder.Volumes
|
||||
VolumeBuilder.Make<ReverbTriggerVolume>(go, sector, reverbVolume);
|
||||
}
|
||||
}
|
||||
if (config.Volumes.insulatingVolumes != null)
|
||||
{
|
||||
foreach (var insulatingVolume in config.Volumes.insulatingVolumes)
|
||||
{
|
||||
VolumeBuilder.Make<InsulatingVolume>(go, sector, insulatingVolume);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -29,6 +29,11 @@ namespace NewHorizons.External.Modules
|
||||
/// </summary>
|
||||
public VolumeInfo[] interferenceVolumes;
|
||||
|
||||
/// <summary>
|
||||
/// Add insulating volumes to this planet
|
||||
/// </summary>
|
||||
public VolumeInfo[] insulatingVolumes;
|
||||
|
||||
/// <summary>
|
||||
/// Add map restriction volumes to this planet
|
||||
/// </summary>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user