public void Prepare() { if (!_takingPicture) { _takingPicture = true; _cameraBorderText.text = CameraText; _cameraBorderController.SetIdleMaterial(); _cameraBorderController.Timer.text = string.Empty; _cameraBorderController.Show(); } }
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"); } }