r2mods/ilspy_dump/ror2_csproj/RoR2/SetAmbientLight.cs

47 lines
979 B
C#

using UnityEngine;
using UnityEngine.Rendering;
namespace RoR2;
[ExecuteAlways]
public class SetAmbientLight : MonoBehaviour
{
public bool setSkyboxMaterial;
public bool setAmbientLightColor;
public Material skyboxMaterial;
public AmbientMode ambientMode;
public float ambientIntensity;
[ColorUsage(true, true)]
public Color ambientSkyColor = Color.black;
[ColorUsage(true, true)]
public Color ambientEquatorColor = Color.black;
[ColorUsage(true, true)]
public Color ambientGroundColor = Color.black;
private void OnEnable()
{
}
private void ApplyLighting()
{
if (setAmbientLightColor)
{
RenderSettings.ambientMode = ambientMode;
RenderSettings.ambientSkyColor = ambientSkyColor * ambientIntensity;
RenderSettings.ambientEquatorColor = ambientEquatorColor * ambientIntensity;
RenderSettings.ambientGroundColor = ambientGroundColor * ambientIntensity;
}
if (setSkyboxMaterial)
{
RenderSettings.skybox = skyboxMaterial;
}
}
}