Fix bramble seeds being the wrong size

This commit is contained in:
Nick 2024-03-12 13:59:31 -04:00
parent 7bfe3d2fd1
commit b1b7f43905

View File

@ -250,6 +250,12 @@ namespace NewHorizons.Builder.Props
foreach(Transform child in brambleNode.transform)
{
child.localScale = Vector3.one * config.scale;
// The fog on bramble seeds has a specific scale we need to copy over
if (child.name == "VolumetricFogSphere (2)")
{
child.localScale *= 6.3809f;
}
}
innerFogWarpVolume._warpRadius *= config.scale;
innerFogWarpVolume._exitRadius *= config.scale;