LeapRecorder.SaveToNewFile C# (CSharp) Method

SaveToNewFile() public method

public SaveToNewFile ( ) : string
return string
  public string SaveToNewFile() {
    string path = Application.persistentDataPath + "/Recording_" +
                  System.DateTime.Now.ToString("yyyyMMdd_hhmmss") + ".bytes";
    return SaveToNewFile(path);
  }

Same methods

LeapRecorder::SaveToNewFile ( string path ) : string

Usage Example

Example #1
0
    public string FinishAndSaveRecording()
    {
        string path = recorder_.SaveToNewFile();

        recorder_.Play();
        return(path);
    }
All Usage Examples Of LeapRecorder::SaveToNewFile