资源简介
工具为Unity中assetBundle打包工具,简单灵活,使用与新手操作

代码片段和文件信息
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.IMGUI.Controls;
namespace UnityEngine.AssetBundles
{
public class AssetBundleBrowserMain : EditorWindow IHasCustomMenu ISerializationCallbackReceiver
{
public const float kButtonWidth = 150;
enum Mode
{
Browser
Builder
Inspect
}
[SerializeField]
Mode m_Mode;
[SerializeField]
int m_DataSourceIndex;
[SerializeField]
public AssetBundleManageTab m_ManageTab;
[SerializeField]
public AssetBundleBuildTab m_BuildTab;
[SerializeField]
public AssetBundleInspectTab m_InspectTab;
private Texture2D m_RefreshTexture;
const float k_ToolbarPadding = 15;
const float k_MenubarPadding = 32;
[MenuItem(“Window/AssetBundle Browser“ priority = 2050)]
static void ShowWindow()
{
var window = GetWindow();
window.titleContent = new GUIContent(“AssetBundles“);
window.Show();
}
[SerializeField]
public bool multiDataSource = false;
List m_DataSourceList = null;
public virtual void AddItemsToMenu(GenericMenu menu)
{
menu.AddItem(new GUIContent(“Custom Sources“) multiDataSource FlipDataSource);
}
public void FlipDataSource()
{
multiDataSource = !multiDataSource;
}
private void OnEnable()
{
Rect subPos = GetSubWindowArea();
if(m_ManageTab == null)
m_ManageTab = new AssetBundleManageTab();
m_ManageTab.OnEnable(subPos this);
if(m_BuildTab == null)
m_BuildTab = new AssetBundleBuildTab();
m_BuildTab.OnEnable(subPos this);
if (m_InspectTab == null)
m_InspectTab = new AssetBundleInspectTab();
m_InspectTab.OnEnable(subPos this);
m_RefreshTexture = EditorGUIUtility.FindTexture(“Refresh“);
InitDataSources();
}
private void InitDataSources()
{
//determine if we are “multi source“ or not...
multiDataSource = false;
m_DataSourceList = new List();
foreach (var info in AssetBundleDataSource.ABDataSourceProviderUtility.CustomABDataSourceTypes)
{
m_DataSourceList.AddRange(info.GetMethod(“CreateDataSources“).Invoke(null null) as List);
}
if (m_DataSourceList.Count > 1)
{
multiDataSource = true;
if (m_DataSourceIndex >= m_DataSourceList.Count)
m_DataSourceIndex = 0;
AssetBundleModel.Model.DataSource = m_DataSourceList[m_DataSourceIndex];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 64 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\.gitignore
....... 1075 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\LICENSE
....... 10666 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\MANUAL.md
....... 1629 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\README.md
....... 8073 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleBrowserMain.cs
....... 18682 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleBuildTab.cs
....... 1045 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleDataSource\ABDataSource.cs
....... 1267 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleDataSource\ABDataSourceProvider.cs
....... 2563 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleDataSource\AssetDataba
....... 10103 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleManageTab.cs
....... 30089 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleModel\ABModel.cs
....... 8889 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleModel\ABModelAssetInfo.cs
....... 33472 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleModel\ABModelBundleInfo.cs
....... 26203 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetBundleTree.cs
....... 16407 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\AssetListTree.cs
....... 5729 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\BundleDetailList.cs
....... 1499 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\Icons\ABundleBrowserIconY1756Basic.png
....... 1617 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\Icons\ABundleBrowserIconY1756Scene.png
....... 10931 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\InspectTab\AssetBundleInspectTab.cs
....... 1813 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\InspectTab\AssetBundleRecord.cs
....... 2356 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\InspectTab\InspectSingleBundle.cs
....... 1739 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\InspectTab\InspectTreeView.cs
....... 4241 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\MessageList.cs
....... 7717 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\AssetBundleBrowser\MessageSystem.cs
....... 30839 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\Tests\ABModelTests.cs
....... 741 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\Tests\AssetBundleRecordTests.cs
....... 1734 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\Tests\Util\ABModelUtil.cs
....... 2085 2017-09-19 22:54 MyPlugins\AssetBundles-Browser-master\AssetBundles-Browser-master\UnityEngine.AssetBundles\Editor\Tests\Util\TestUtil.cs
文件 63105 2017-11-25 14:40 MyPlugins\AssetBundles-Browser-master.zip
文件 5525619 2017-11-25 14:41 MyPlugins\Bundle Manager.unitypackage
............此处省略15个文件信息
- 上一篇:ME3630-W模块AT指令集_v2.8
- 下一篇:图像特征点提取与匹配
相关资源
- Unity3D登录界面工程
- unity3d反编译工具
-
UnityWebPla
yer及UnityWebPla yerFull -
UnityWebPla
yerFull - unity4.0官方正式版
- Behavior Designer 1.6.3(u2018.3.0).unitypa
- Unity纪念碑谷.rar
- A Pathfinding Project Pro v4.2.2.rar
- Unity 声音播放插件,支持将字符串转
- Gaia 1.7.2
- Unity3d实现扭动挤压浏览效果
- UnityShader卷轴效果
- 爱酱(绊爱Kizuna)模型
- 遗传算法越野小车unity5.5
- unity 3D 百度语音合成 并播放
- unity案例入门坦克大战源码
- Graph And Chart 1.91.unitypackage
- Animated Steel Coaster 1.51.rar
- Unity3D游戏开发.pdf 宣雨松著完整高清
- Unity3D版水果忍者
- unity3d爆炸特效包
- unity3d_见缝插针源码及报告.zip
- Unity3d车库场景模型
- unity3d 警察动画模型
- unity20多种烟雾以及爆炸特效
- unity博物馆.zip
- burpsuite_community社区版x86系统
- unity3D 新手引导遮罩,支持圆形和矩形
- 兼容unity的System.Drawing.dll
- unity3d枪支武器包FPS第一人称射击游戏
评论
共有 条评论