public override void SwipeRightEffect(OVRPlayerController PlayerController, Transform root)
 {
     //Debug.Log ("In SwipeRightEffect");
     root.transform.Rotate(0, -30, 0);
     PlayerController.RotateCamerasFromGestrure(-30);
     if (tutrialStarted && onSwipeRight)
     {
         Debug.Log("SwapRight Completed");
         onSwipeRight = false;
         onPush       = true;
         if (teacherSoundScript != null)
         {
             teacherSoundScript.PlayPush();
         }
     }
 }