// Update is called once per frame
 void Update()
 {
     if (pinchController.endPinch)
     {
         if (isConfirmed)
         {
             m_stepmanager.NextStep();
         }
     }
 }
Beispiel #2
0
 // Update is called once per frame
 void Update()
 {
     if (pinchController.endPinch)
     {
         if (isConfirmed)
         {
             //m_toppingManager.toppingCounter++;
             m_stepManager.NextStep();
         }
     }
 }
Beispiel #3
0
 public void ConfirmChoice()
 {
     //StartCoroutine(TestFunction());
     stepManager.NextStep();
 }