public AdvancedGenericFilePath(GenericFolder folder, string path, string editorPath)
 {
     buildPath          = new GenericFilePath(folder, path);
     separateEditorPath = true;
     this.editorPath    = new GenericFilePath(folder, editorPath);
 }
 public AdvancedGenericFilePath(GenericFolder folder, string path)
 {
     buildPath          = new GenericFilePath(folder, path);
     separateEditorPath = false;
     editorPath         = new GenericFilePath(folder, path);
 }
 public AdvancedGenericFilePath(string path, string editorPath)
 {
     buildPath          = new GenericFilePath(GenericFolder.PersistentDataPath, path);
     separateEditorPath = true;
     this.editorPath    = new GenericFilePath(GenericFolder.PersistentDataPath, editorPath);
 }
 public AdvancedGenericFilePath(string path)
 {
     buildPath          = new GenericFilePath(GenericFolder.PersistentDataPath, path);
     separateEditorPath = false;
     editorPath         = new GenericFilePath(GenericFolder.PersistentDataPath, path);
 }