Version: 2020.1
帧调试器
串流控制器 (Streaming Controller)

Mipmap 串流

Mipmap 串流系统可以控制 Unity 加载到内存中的 Mipmap 级别。该系统可减少 Unity 对于纹理所需的内存总量,因为它只加载 Unity 在场景中渲染当前摄像机位置时所需的 Mipmap,而不是默认加载所有 Mipmap。该系统通过消耗少量 CPU 资源来节省潜在的大量 GPU 内存。

您还可以使用 Memory Budget(内存预算) 为项目中使用的所有纹理设置一个总内存限制。Mipmap 串流系统会自动降低 Mipmap 级别来确保不超出此预算范围。

您可以使用 Mipmap 串流系统 API 为特定纹理请求特定的 Mipmap 级别。Unity 提供了 C# 代码示例,其中会重现 Mipmap 选择方法的引擎逻辑;您可以使用此引擎逻辑来覆盖您自己项目中的引擎逻辑。有关更多详细信息,请参阅 Mipmap 串流 API

在 Unity 的 Viking Village 演示项目中,Mipmap 串流可以节省 25–30% 的纹理内存,具体数值取决于摄像机位置。

准备开始

要启用 Mipmap 串流,请选择 Unity 的 Quality Settings (Edit > Project Settings > Quality),然后启用 Texture Streaming 复选框。此时将显示 Mipmap 串流系统特有的设置。如需了解每项设置的详细信息,请参阅 Quality Settings 的文档。

完成此操作后,请在各个纹理上设置 Mipmap 串流,从而让 Mipmap 串流系统将每个纹理的 Mipmap 从磁盘流式传输到内存中。为此,请选择要应用 Mipmap 串流的纹理,导航到 Inspector 窗口,并查看纹理导入设置。打开 Advanced 设置,并启用 Streaming Mip Maps 复选框。

如果是进行 Android 开发,还需要打开 Build Settings 并将 Compression Method 设置为 LZ4LZ4HC。Unity 需要使用其中一种压缩方法进行异步纹理加载,这是 Mipmap 串流系统所必需的操作。

Unity 在满足纹理 Memory Budget(内存预算) 的同时以最高分辨率级别加载 Mipmap。要进行更具体的控制或微调 Mipmap 串流系统的自动化结果,请使用 C# API 为每个纹理指定 Mipmap 级别。有关更多详细信息,请参阅 Mipmap 串流 API

限制

For Mip Map Streaming, you need to assign each Texture to a Unity Renderer to allow the system to calculate the required mip level, unless a script requests manual mip levels (see documentation on Texture2D.requestedMipmapLevel). If you do not assign a Texture to a Renderer (and do not set a manually requested mip), the system cannot calculate what mip to use. This results in Unity loading the Texture with reduced mips, which look blurry when close to the Camera.

The following systems don’t use standard Renderers, so you should disable Mip Map Streaming on Textures associated with them:

  • 贴花投影器 (Decal Projector) 纹理。
  • 反射探针纹理。这些纹理与较低 Mip 级别的不同材质属性相关,因此流式传输这些纹理没有意义。
  • Textures in Unity’s Terrain system. Unity does not support Mip Map Streaming on Terrain Textures, because the system usually blends these Textures over the whole Terrain, so they should stay on the GPU.
  • 在着色器中具有复杂纹理混合的系统。

When Unity renders a streamed Texture directly with an API (such as Graphics.DrawMeshNow) the system has no renderer bounds information to calculate the mip level, so you need to set the Texture mip level explicitly (or disable Mip Map Streaming on this Texture). See documentation on Texture2D.requestedMipmapLevel for more details.

帧调试器
串流控制器 (Streaming Controller)