r2mods/ilspy_dump/ror2_csproj/RoR2/LightScaleFromParent.cs

18 lines
360 B
C#
Raw Permalink Normal View History

2024-10-04 07:26:37 +00:00
using UnityEngine;
namespace RoR2;
public class LightScaleFromParent : MonoBehaviour
{
private void Start()
{
Light component = GetComponent<Light>();
if ((bool)component)
{
float range = component.range;
Vector3 lossyScale = base.transform.lossyScale;
component.range = range * Mathf.Max(lossyScale.x, lossyScale.y, lossyScale.z);
}
}
}