Version: 2019.3
シェーダーのロード時間の最適化
Streaming Controller

テクスチャストリーミング

Texture Streaming (テクスチャストリーミング) システムは、Unity がメモリにロードするミップマップレベルを制御します。このシステムは Unity がテクスチャのために必要な合計メモリ量を削減します。なぜなら、テクスチャストリーミングシステムは、デフォルトでシーン内のすべてのミップマップをロードするのではなく、シーンの現在のカメラ位置のレンダリングに必要なミップマップのみをロードするからです。これにより、少量の CPU リソースと引き換えに、多くの GPU メモリを節約することが可能です。

テクスチャストリーミングの Memory Budget (メモリバジェット) を使用して、プロジェクトで使用するすべてのテクスチャの合計メモリ量を設定することもできます。テクスチャストリーミングシステムは自動的にミップマップレベルを下げてこの設定内に留めます。

テクスチャストリーミング API を使用して、特定のテクスチャに特定のミップマップレベルをリクエストできます。Unity は、ミップマップ選択のためのエンジンロジックを複製するサンプルの C# コードを提供しています。これを使用して、プロジェクトのためにエンジンロジックをオーバーライドできます。詳細は、テクスチャストリーミング API を参照してください。

Unity の Viking Village デモプロジェクトでは、テクスチャストリーミングはカメラの場所に応じて、テクスチャメモリの 25〜30% を節約します。

Texture Streaming 設定

テクスチャストリーミングを有効にするには、Unity の Quality 設定 (Edit > Project Settings > Quality) に移動し、Texture Streaming チェックボックスをチェックします。これにより、テクスチャストリーミングシステム特有の設定が表示されます。各設定の詳細は、Quality 設定 を参照してください。

これを行うと、個々のテクスチャにテクスチャストリーミングを設定し、テクスチャストリーミングシステムが各テクスチャのミップマップをディスクからメモリにストリーミングできるようにします。これを行うには、テクスチャストリーミングを適用するテクスチャを選択し、インスペクターウィンドウに移動し、テクスチャインポートの設定を表示します。 Advanced 設定を開き、Streaming Mip Maps チェックボックスにチェックします。

Android 用に開発する場合は、Build Settings (ビルド設定) を開き、Compression MethodLZ4LZ4HC に設定する必要があります。 Unity では、テクスチャストリーミングシステムが依存する 非同期テクスチャの読み込み にそれらの圧縮方法の 1 つが必要です。

Unity loads mipmaps at the highest resolution level possible while observing the Texture Memory Budget. For more specific control, or to fine-tune the Texture Streaming system’s automatic results, use the C# API to specify mipmap levels for each Texture. For more details, see Texture Streaming API.

Texture Streaming limitations

For Texture Streaming, you need to assign each Texture to a Unity Renderer to allow the system to calculate the required mip map 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 Texture Streaming on Textures associated with them:

  • Decal projector Textures.
  • Reflection probe Textures. These are related to different Material properties at lower mips, so it doesn’t make sense to stream them.
  • Textures in Unity’s Terrain system. Unity does not support Texture Streaming on Terrain Textures, because the system usually blends these Textures over the whole Terrain, so they should stay on the GPU.
  • Systems which have complex Texture blending in the Shader.

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 Texture streaming on this Texture). See documentation on Texture2D.requestedMipmapLevel for more details.

シェーダーのロード時間の最適化
Streaming Controller
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961