Skip to content

Commit

Permalink
增加打包目录
Browse files Browse the repository at this point in the history
  • Loading branch information
KumoKyaku committed Sep 1, 2023
1 parent dba18b6 commit 0b300d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ static void CreateBuildFolder()
MeguminUtility4Unity.BuildPath_StandaloneLinux64,
MeguminUtility4Unity.BuildPath_PS4,
MeguminUtility4Unity.BuildPath_PS5,
MeguminUtility4Unity.BuildPath_WebGL,
MeguminUtility4Unity.BuildPath_DedicatedServer,
MeguminUtility4Unity.BuildPath_activeBuildTarget,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ public static class MeguminUtility4Unity
public static string BuildPath_PS4 { get; } = GetProjectFolderPath("Build/PS4");
public static string BuildPath_PS5 { get; } = GetProjectFolderPath("Build/PS5");

public static string BuildPath_WebGL { get; } = GetProjectFolderPath("Build/WebGL");

public static string BuildPath_DedicatedServer { get; } = GetProjectFolderPath("Build/DedicatedServer");

public static string BuildPath_activeBuildTarget { get; } = GetProjectFolderPath("Build/activeBuildTarget");

public static string ProjectSettingsPath { get; } = GetProjectFolderPath("ProjectSettings");
Expand Down

0 comments on commit 0b300d0

Please sign in to comment.