Esempio n. 1
0
 public void BounceForceSliderChanged(Slider s)
 {
     if (started)
     {
         if (bouncer != null)
         {
             bouncer.SetBounciness((int)Mathf.Round(s.value));
         }
     }
     started = true;
 }