From 020b0a90d76a58dce1d3dbceedff6fe5b7c1addf Mon Sep 17 00:00:00 2001 From: Ruan Lucas <79365912+RuanLucasGD@users.noreply.github.com> Date: Tue, 27 Jun 2023 00:22:12 -0400 Subject: [PATCH] remove unecessary code --- Source/Editor/ProjectInfo.cs | 12 ------------ 1 file changed, 12 deletions(-) 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))