Ejemplo n.º 1
0
		public void UpdateTimerLoadingGesture (GestureManager.GestureTypes type, float percent)
		{
			Slider currentSlider = GetSliderBasedType (type);
			currentSlider.image.color = Color.green;
			currentSlider.value = percent;
		}
Ejemplo n.º 2
0
 public void UpdateUILoadingGesture(GestureManager.GestureTypes type, float percent)
 {
     uiManager.UpdateTimerLoadingGesture(type, percent);
 }
Ejemplo n.º 3
0
 public void UpdateUIBlockingGesture(GestureManager.GestureTypes type, float timer, EndEvent endEvent)
 {
     uiManager.RegisterEventEndCountDown(endEvent);
     uiManager.UpdateSliderBlockingGesture(type, timer);
 }