private void FeedbackManager_FeedbackSuccessfullyUploaded(object sender, VRTheFeedbackManager.VRTheFeedbackEventArgs e)
 {
     infoText.text    = "Thank you!\nGrab again to record another message.";
     audioSource.clip = successClip;
     audioSource.Play();
     GetComponent <Renderer>().material = readyMaterial;
     canRecordFeedback = true;
 }
 private void FeedbackManager_FeedbackFailedDueToError(object sender, VRTheFeedbackManager.VRTheFeedbackEventArgs e)
 {
     infoText.text    = "Something went wrong.\nPlease try again.";
     audioSource.clip = errorClip;
     audioSource.Play();
     GetComponent <Renderer>().material = readyMaterial;
     canRecordFeedback = true;
 }