Skip to content

Commit

Permalink
Optimized comment out when open editor to create default data source
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelo committed Jun 1, 2022
1 parent ea86271 commit dccabb5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog (unofficial)

## [1.0.1] - 2022-06-01
- Optimized comment out when open editor to CreateDefaultDataSources().

## [1.0.0] - 2022-06-01
- Added BuildMap to group different version assets (click right to Create/Asset Bundles Broswer Plus/BundleBuildMap).
- Added default BuildMap replace AssetDatabaseABDataSource => Default (Built-in).
- Modified AssetDatabaseABDataSource to hide ABDataSource.
- Removed Tests editor.

Expand Down
4 changes: 2 additions & 2 deletions Editor/AssetBundleBrowserMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ enum Mode
const float k_ToolbarPadding = 15;
const float k_MenubarPadding = 32;

[MenuItem("Window/AssetBundle Browser", priority = 2050)]
[MenuItem("Window/AssetBundle Browser Plus", priority = 2050)]
static void ShowWindow()
{
s_instance = null;
instance.titleContent = new GUIContent("AssetBundles");
instance.titleContent = new GUIContent("AssetBundlesPlus");
instance.Show();
}

Expand Down
2 changes: 1 addition & 1 deletion Editor/BundleBuildMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static List<ABDataSource> CreateDataSources()
{
var retList = new List<ABDataSource>();

retList.AddRange(CreateDefaultDataSources());
//retList.AddRange(CreateDefaultDataSources());

string folderPath = EditorPrefs.GetString(KEY_DATASOURCES_FOLDER_PATH, string.Empty);
if (string.IsNullOrEmpty(folderPath)) return retList;
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ Added BuildMap to group different version assets (click right to Create/Asset Bu
# Installation
### Install via git URL
Add https://github.com/michael811125/AssetBundles-Browser-Plus.git to Package Manager.
### Import unitypackage
Download unitypackage from [Releases](https://github.com/michael811125/AssetBundles-Browser-Plus/releases).

## Full Documentation
#### Official Released Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"name": "com.unity.assetbundlebrowser.plus",
"displayName": "Asset Bundle Browser Plus",
"version": "1.0.0",
"version": "1.0.1",
"unity": "2018.1",
"description": "The Asset Bundle Browser tool enables the user to view and edit the configuration of asset bundles for their Unity project. It will block editing that would create invalid bundles, and inform you of any issues with existing bundles. It also provides basic build functionality.\n\nUse this tool as an alternative to selecting assets and setting their asset bundle manually in the inspector. It can be dropped into any Unity project with a version of 5.6 or greater. It will create a new menu item in Window > AssetBundle Browser. The bundle configuration, build functionality, and built-bundle inspection are split into three tabs within the new window.",
"keywords": ["asset", "bundle", "bundles", "assetbundles"],
Expand Down

0 comments on commit dccabb5

Please sign in to comment.