soundvision/UnityProject/Assets/Scripts/PdConnection/PdLevelBind.cs

37 lines
894 B
C#
Raw Normal View History

2019-10-07 16:53:36 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
namespace cylvester
{
[System.Serializable]
public class LevelEvent : UnityEvent<float>
{
}
public class PdLevelBind : MonoBehaviour
{
[SerializeField] private PdBackend pdbackend;
[SerializeField, Range(1, 16)] private int channel = 1;
2019-10-07 22:03:16 +00:00
[SerializeField] private LevelEvent levelChanged;
[SerializeField] bool logLevel;
2019-10-07 16:53:36 +00:00
private float level_;
void Update()
{
var level = pdbackend.LevelArray.Data[channel - 1];
if (level_ != level)
{
level_ = level;
2019-10-07 22:03:16 +00:00
levelChanged.Invoke(level_);
if (logLevel)
{
Debug.Log("Level:" + level_);
}
2019-10-07 16:53:36 +00:00
}
}
}
}