mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fix bramble seeds being the wrong size
This commit is contained in:
parent
7bfe3d2fd1
commit
b1b7f43905
@ -250,6 +250,12 @@ namespace NewHorizons.Builder.Props
|
|||||||
foreach(Transform child in brambleNode.transform)
|
foreach(Transform child in brambleNode.transform)
|
||||||
{
|
{
|
||||||
child.localScale = Vector3.one * config.scale;
|
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._warpRadius *= config.scale;
|
||||||
innerFogWarpVolume._exitRadius *= config.scale;
|
innerFogWarpVolume._exitRadius *= config.scale;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user