// Update is called once per frame
 void Update()
 {
     if (!stars.IsPlaying())
     {
         stars.Play(Duration);
     }
 }
Esempio n. 2
0
 public void Stun(float seconds)
 {
     timerMax     = seconds;
     timerElapsed = 0.0f;
     m_visualFeedback.Play(seconds);
 }