// Transitions into the Survey UI
 public void EnterSurveyUI()
 {
     SwitchToUI(5);
     surveyUIGameObject.SetActive(true);
     UpdateSurveyUI();
     clientSurvey.ResetSurveyState();
     CleanDataEntryUI();
     surveyAnimator.Play("InSplashScreen");
 }
Example #2
0
 // Jumps to the start of the survey, and cleans out any old survey values in the process.
 // Called by a button on the survey splash screen
 public void StartSurvey()
 {
     clientSurvey.ResetSurveyState();
     UIController.CleanDataEntryUI();
     UIController.AnimGoToDataEntry();
 }