Synchronise Twitch Events to your Phillips Hue Lights
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Twitchue/Assets/Scripts/UI/SidebarEntryManager.cs

20 lines
403 B

4 years ago
using UnityEngine;
using UnityEngine.UI;
public class SidebarEntryManager : MonoBehaviour
{
[SerializeField] private Color Selected;
[SerializeField] private Color Unselected;
[SerializeField] private Image background;
public void MarkSelected()
{
background.color = Selected;
}
public void MarkUnselected()
{
background.color = Unselected;
}
}