美文网首页Unity
获取AssetBundle文件的数据信息

获取AssetBundle文件的数据信息

作者: 晓龙酱 | 来源:发表于2017-12-03 23:35 被阅读431次

有时加载的AssetBundle文件会出现异常,比如引用丢失之类的问题,就需要我们获取到当前AssetBundle文件中的相关信息。使用Unity内置的工具就可以获取到相关信息。

  • 工具目录位置

    • mac
    /Applications/Unity/Unity.app/Contents/Tools 
    
    • windows
    C:\Program Files\Unity\Editor\Data\Tools
    
  • 相关工具

    • WebExtract
      将AssetBundle中的数据信息解析为二进制文件

      // 导出到当前路径的子目录中
      ./WebExtract assetbundlefile
      
    • binary2text
      将上一步中的二进制文件解析为记录了引用等信息的文本文件

      ./binary2text binarydataPath outputPath
      
    • 注意

      • 直接运行以上命令可以查看所需参数
      • 工具的unity版本要与生成assetbundle的unity版本一致
  • 最终得到的文本文件中包含了

    • 资源类型及数据结构
    • AssetBundleName
    • 引用资源
    • 被引用资源
    • 其它信息
  • 范例
    一个材质 matCube.mat通过依赖打包后,再被解析出的文件如下:

External References
path(1): "archive:/cab-44fe2819cb4a15306ccad78cf746391a/cab-44fe2819cb4a15306ccad78cf746391a" GUID: 00000000000000000000000000000000 Type: 0
path(2): "archive:/cab-23025caa3b76893fa1854f12632fb434/cab-23025caa3b76893fa1854f12632fb434" GUID: 00000000000000000000000000000000 Type: 0


ID: -5138565447120358643 (ClassID: 21) Material
    m_Name "matCube" (string)
    m_Shader  (PPtr<Shader>)
        m_FileID 1 (int)
        m_PathID 8470779717659199670 (SInt64)
    m_ShaderKeywords "_EMISSION" (string)
    m_LightmapFlags 1 (unsigned int)
    m_EnableInstancingVariants 0 (bool)
    m_DoubleSidedGI 0 (bool)
    m_CustomRenderQueue -1 (int)
    stringTagMap  (map)
        size 0 (int)

    disabledShaderPasses  (vector)
        size 0 (int)

    m_SavedProperties  (UnityPropertySheet)
        m_TexEnvs  (map)
            size 1 (int)
            data  (pair)
                first "_MainTex" (string)
                second  (UnityTexEnv)
                    m_Texture  (PPtr<Texture>)
                        m_FileID 2 (int)
                        m_PathID 576367333583433997 (SInt64)
                    m_Scale (1 1) (Vector2f)
                    m_Offset (0 0) (Vector2f)

        m_Floats  (map)
            size 16 (int)
            data  (pair)
                first "_BumpScale" (string)
                second 1 (float)
            data  (pair)
                first "_Cutoff" (string)
                second 0.5 (float)
            data  (pair)
                first "_DetailNormalMapScale" (string)
                second 1 (float)
            data  (pair)
                first "_DstBlend" (string)
                second 0 (float)
            data  (pair)
                first "_GlossMapScale" (string)
                second 1 (float)
            data  (pair)
                first "_Glossiness" (string)
                second 0.5 (float)
            data  (pair)
                first "_GlossyReflections" (string)
                second 1 (float)
            data  (pair)
                first "_Metallic" (string)
                second 0 (float)
            data  (pair)
                first "_Mode" (string)
                second 0 (float)
            data  (pair)
                first "_OcclusionStrength" (string)
                second 1 (float)
            data  (pair)
                first "_Parallax" (string)
                second 0.02 (float)
            data  (pair)
                first "_SmoothnessTextureChannel" (string)
                second 0 (float)
            data  (pair)
                first "_SpecularHighlights" (string)
                second 1 (float)
            data  (pair)
                first "_SrcBlend" (string)
                second 1 (float)
            data  (pair)
                first "_UVSec" (string)
                second 0 (float)
            data  (pair)
                first "_ZWrite" (string)
                second 1 (float)

        m_Colors  (map)
            size 2 (int)
            data  (pair)
                first "_Color" (string)
                second (1 1 1 1) (ColorRGBA)
            data  (pair)
                first "_EmissionColor" (string)
                second (0 0 0 1) (ColorRGBA)



ID: 1 (ClassID: 142) AssetBundle
    m_Name "scene/matcube" (string)
    m_PreloadTable  (vector)
        size 3 (int)
        data  (PPtr<Object>)
            m_FileID 2 (int)
            m_PathID 576367333583433997 (SInt64)
        data  (PPtr<Object>)
            m_FileID 0 (int)
            m_PathID -5138565447120358643 (SInt64)
        data  (PPtr<Object>)
            m_FileID 1 (int)
            m_PathID 8470779717659199670 (SInt64)

    m_Container  (map)
        size 1 (int)
        data  (pair)
            first "assets/resources/scene/matcube.mat" (string)
            second  (AssetInfo)
                preloadIndex 0 (int)
                preloadSize 3 (int)
                asset  (PPtr<Object>)
                    m_FileID 0 (int)
                    m_PathID -5138565447120358643 (SInt64)

    m_MainAsset  (AssetInfo)
        preloadIndex 0 (int)
        preloadSize 0 (int)
        asset  (PPtr<Object>)
            m_FileID 0 (int)
            m_PathID 0 (SInt64)
    m_RuntimeCompatibility 1 (unsigned int)
    m_AssetBundleName "scene/matcube" (string)
    m_Dependencies  (vector)
        size 2 (int)
        data "shader/wxl/texture" (string)
        data "scene/texsky" (string)

    m_IsStreamedSceneAssetBundle 0 (bool)

相关文章

  • 获取AssetBundle文件的数据信息

    有时加载的AssetBundle文件会出现异常,比如引用丢失之类的问题,就需要我们获取到当前AssetBundle...

  • ffmpeg android视频解码

    解码流程: 获取文件信息,数据存储在AVFormatContext里面根据AVFormatContext获取对应的...

  • jsp中的文件操作

    一、获取文件信息 jsp中获取文件的信息主要使用file文件,用来获取的文件信息包括文件所在的目录、文件的长度、文...

  • iOS 版本升级提示功能封装

    相关知识点 获取商店应用版本信息 具体数据结构 商店下载地址 获取当前版本 源代码 .h文件 .m文件

  • js解析xml

    案例:ajax请求获取的数据为xml文件,解析xml标签中的数据信息 1、ajax请求,测试地址为:获取地图坐标偏...

  • 第十八章 Python psutil模块实现Linux 主机信息

    容量装换工具 获取 CPU 数据信息 打印 CPU数据信息 获取 打印 内存信息 获取 打印 网卡信息 获取 打印...

  • ToLua的Example示例学习笔记18_Bundle

    展示了如何使用Assetbundle从本地(或服务器)来获取需要的Lua文件并执行。 「1」代码 c#代码如下,这...

  • 2021-02-24 assetbundle相关

    一 AssetBundle加载基础通过AssetBundle加载资源,分为两步,第一步是获取AssetBun...

  • Node.js fs模块-stat()方法

    一. stat()方法-->获得文件信息方法 1. 获取文件信息语法 2. 参数info为获取的文件信息,获得到的...

  • fs.stat获取文件或目录的信息

    获取文件或目录的信息,获取到的信息存在一个fs.stats类的对象中 例1:异步获取文件或目录的信息,获取到的信息...

网友评论

    本文标题:获取AssetBundle文件的数据信息

    本文链接:https://www.haomeiwen.com/subject/pteabxtx.html