1
0
mirror of https://github.com/xiaopeng12138/MaiDXR.git synced 2024-12-14 02:22:51 +01:00
MaiDXR/Assets/Scripts/Configurations/LightSettingManager.cs

16 lines
310 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LightSettingManager : MonoBehaviour
{
public List<Light> Lights;
public void OnStateChanges(bool isOn)
{
foreach (var light in Lights)
{
light.enabled = isOn;
}
}
}