Example #1
0
 void checkEnd(float position)
 {
     if (position > 19f)
     {
         exploreManager.increaseIndex();
         if (!exploreManager.checkForMaxIndex())
         {
             reachedEnd();
         }
         else
         {
             resetCouple();
         }
     }
 }