public override void SetPageState(SurveyPageState newPageState)
 {
     currentPageState = newPageState;
     if (newPageState == SurveyPageState.LoadingOut)
     {
         shouldWriteCSV        = toggleWriteCSV.isOn;
         shouldSendCSVToServer = toggleSendCSV.isOn;
         shouldUseDebugIP      = toggleDebugIP.isOn;
         debugIP = inputFieldDebugIP.text;
     }
 }
Exemplo n.º 2
0
 public override void SetPageState(SurveyPageState newPageState)
 {
     currentPageState = newPageState;
 }
 // Sets the current page state. Gets called by Client2UIController.
 public abstract void SetPageState(SurveyPageState newPageState);