Skip to content

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Harris committed May 4, 2019
1 parent 82af86a commit 9bdb2a1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ExpanseBundler/Editor/Bundle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

public class Bundle : EditorWindow {

string inputDirectory = "Assets/AssetBundles/Input";
string outputDirectory = "Assets/AssetBundles/Output";
string inputDirectory = "Assets/ExpanseBundler/AssetBundles/Input";
string outputDirectory = "Assets/ExpanseBundler/AssetBundles/Output";
string outputName = "my_bundle";
bool deleteManifests = true;

Expand Down Expand Up @@ -81,7 +81,6 @@ string[] BuildBundle(BuildTarget target) {
if (Path.GetExtension(fileName) != ".cs") {
AssetImporter asset = AssetImporter.GetAtPath(fileName);
if (asset != null) {
Debug.Log(fileName);
asset.SetAssetBundleNameAndVariant(target == BuildTarget.StandaloneWindows ? outputName : outputName + "_android", "");
}
}
Expand Down

0 comments on commit 9bdb2a1

Please sign in to comment.