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/RequireBridgeSet.cs

20 lines
413 B

4 years ago
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(CanvasGroup))]
public class RequireBridgeSet : MonoBehaviour
{
CanvasGroup canvasManager;
private void Awake()
{
canvasManager = GetComponent<CanvasGroup>();
}
void FixedUpdate()
{
canvasManager.alpha = GameManager.Instance.CurrentBridge == null ? 0 : 1;
}
}