Exemplo n.º 1
0
 void LoopsBrother()
 {
     if (itsALoop == LoopBoi.One)
     {
         itsALoop = LoopBoi.Two;
         Debug.Log("u gay");
     }
     else if (itsALoop == LoopBoi.Two)
     {
         itsALoop = LoopBoi.Three;
         Debug.Log("u gay the sequel");
     }
     else if (itsALoop == LoopBoi.Three)
     {
         itsALoop = LoopBoi.Four;
         Debug.Log("u gay the prequel sequel");
     }
     else if (itsALoop == LoopBoi.Four)
     {
         itsALoop = LoopBoi.One;
         Debug.Log("u gay the final chapter");
     }
 }
Exemplo n.º 2
0
 void Start()
 {
     itsALoop = LoopBoi.One;
 }