diff --git a/Source/Editor/ProjectInfo.cs b/Source/Editor/ProjectInfo.cs index 62402b0d8..bc55a9c05 100644 --- a/Source/Editor/ProjectInfo.cs +++ b/Source/Editor/ProjectInfo.cs @@ -55,16 +55,6 @@ namespace FlaxEditor [NonSerialized] public string ProjectFolderPath; - /// - /// The content assets folder - /// - public string ContentFolderPath; - - /// - /// The source files folder path - /// - public string SourceFolderPath; - /// /// The project version. /// @@ -167,8 +157,6 @@ namespace FlaxEditor var project = JsonConvert.DeserializeObject(contents); project.ProjectPath = path; project.ProjectFolderPath = StringUtils.NormalizePath(Path.GetDirectoryName(path)); - project.ContentFolderPath = StringUtils.NormalizePath(project.ProjectFolderPath + "/Content"); - project.SourceFolderPath = StringUtils.NormalizePath(project.ProjectFolderPath + "/Source"); // Process project data if (string.IsNullOrEmpty(project.Name))