File tree Expand file tree Collapse file tree
Editor/AssetBundleBuilder Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public static class AssetBundleBuilderHelper
1414 public static string GetDefaultBuildOutputRoot ( )
1515 {
1616 string projectPath = EditorTools . GetProjectPath ( ) ;
17- return $ "{ projectPath } /Bundles/{ Application . identifier } / { Application . version } ";
17+ return $ "{ projectPath } /Bundles/{ Application . identifier } ";
1818 }
1919
2020 /// <summary>
Original file line number Diff line number Diff line change 33using System . Collections ;
44using System . Collections . Generic ;
55using UnityEditor ;
6+ using UnityEngine ;
67
78namespace YooAsset . Editor
89{
@@ -170,7 +171,7 @@ public virtual string GetPipelineOutputDirectory()
170171 {
171172 if ( string . IsNullOrEmpty ( _pipelineOutputDirectory ) )
172173 {
173- _pipelineOutputDirectory = $ "{ BuildOutputRoot } /{ BuildTarget } /{ PackageName } /{ YooAssetSettings . OutputFolderName } ";
174+ _pipelineOutputDirectory = $ "{ BuildOutputRoot } /{ BuildTarget } /{ Application . version } / { PackageName } /{ YooAssetSettings . OutputFolderName } ";
174175 }
175176 return _pipelineOutputDirectory ;
176177 }
@@ -182,7 +183,7 @@ public virtual string GetPackageOutputDirectory()
182183 {
183184 if ( string . IsNullOrEmpty ( _packageOutputDirectory ) )
184185 {
185- _packageOutputDirectory = $ "{ BuildOutputRoot } /{ BuildTarget } /{ PackageName } /{ PackageVersion } ";
186+ _packageOutputDirectory = $ "{ BuildOutputRoot } /{ BuildTarget } /{ Application . version } / { PackageName } /{ PackageVersion } ";
186187 }
187188 return _packageOutputDirectory ;
188189 }
@@ -194,7 +195,7 @@ public virtual string GetPackageRootDirectory()
194195 {
195196 if ( string . IsNullOrEmpty ( _packageRootDirectory ) )
196197 {
197- _packageRootDirectory = $ "{ BuildOutputRoot } /{ BuildTarget } /{ PackageName } ";
198+ _packageRootDirectory = $ "{ BuildOutputRoot } /{ BuildTarget } /{ Application . version } / { PackageName } ";
198199 }
199200 return _packageRootDirectory ;
200201 }
You can’t perform that action at this time.
0 commit comments