コード例 #1
0
ファイル: Blink.cs プロジェクト: CAMOBAP/UnityVolumeButtons
 public void DoBlink(VolumeButtonsEventType e, VolumeButtons ctrl)
 {
     if (InterestingEvent == e)
     {
         Debug.LogFormat("DoBlink for {0} event", InterestingEvent.ToString());
         StartCoroutine(Flash(2));
     }
 }
コード例 #2
0
 public void OnVolumeUpdated(VolumeButtonsEventType e, VolumeButtons ctrl)
 {
     _UpdateText(ctrl);
 }