void ShowMainTable()
 {
     overworldCameraTween.playForward();
     cameraViewButton.SetActive(true);
     pickerToggle.isOn        = false;
     screenCornerMask.enabled = true;
     //directionalLightTween.playForward();
 }
Ejemplo n.º 2
0
 public void Display(Action <AbstractGoTween> callback = null)
 {
     titleLabel.text = "Day " + (God.instance.currentDifficultyLevel + 1).ToString();
     PopulateEndOfDayScreen(God.instance.score);
     endOfDayPanelTween.playForward();
     endOfDayPanelTween.setOnCompleteHandler(callback);
     God.instance.fader.GetComponent <UIPlayAnimation>().Play(true);
     AudioManager.instance.PlayAudioForEndOfDay();
 }