public void Prepare()
 {
     if (!_takingPicture)
     {
         _takingPicture         = true;
         _cameraBorderText.text = CameraText;
         _cameraBorderController.SetIdleMaterial();
         _cameraBorderController.Timer.text = string.Empty;
         _cameraBorderController.Show();
     }
 }
Ejemplo n.º 2
0
 public void Prepare()
 {
     if (!_takingVideo)
     {
         _takingVideo = true;
         _cameraBorderController.Instruction.text = CameraInstructionTextStart;
         _cameraBorderController.Timer.text       = string.Empty;
         _cameraBorderController.SetIdleMaterial();
         _cameraBorderController.Show();
     }
     else
     {
         Debug.Log("Video recording already running");
     }
 }