ストリーミング仮想テクスチャリング (SVT) は、シェーダーグラフ で作成したシェーダーで使用することができます。始める前に、プロジェクトで仮想テクスチャリングを有効にする 必要があります。ビルトインの HD レンダーパイプライン のシェーダー (Lit や Unlit など) は SVT をサポートしません。
SVT を使ってテクスチャのストリーミングを行うには、そのテクスチャを Virtual Texture プロパティ に加える必要があります。Virtual Texture プロパティは、関連するテクスチャのスタックを定義します。これらのテクスチャをサンプリングするには、Virtual Texture プロパティを Sample Virtual Texture ノード に接続します。Sample Virtual Textureノードは、入力で 1 つの UV 座標を取得し、その UV 座標を使用してすべてのテクスチャをサンプリングします。
可能であれば、テクスチャを同じ Virtual Texture プロパティにまとめるべきです。これは、複数のVirtual Texture Propertyをサンプリングするよりも、同じ Virtual Texture プロパティの一部である複数のテクスチャをサンプリングする方が効率的だからです。
フラグメントステージで Sample Virtual Texture ノードを使用すると、サンプル仮想テクスチャ (SVT) はサンプリングした UV に基づいて、テクスチャタイルを自動的にストリーミングします。これを機能させるために、Sample Virtual Texture ノードは、読み込んだタイル ID をレンダーターゲットに出力します。これをオフにするには、ノード設定を開き、Automatic Streaming を無効にします。詳しくは、ストリーミング仮想テクスチャリングの仕組み を参照してください。
Sample Virtual Texture ノードを頂点ステージで使用するには、まず Sample Virtual Texture ノードで Automatic Streaming を無効にし、Lod Level モードを選択する必要があります。次に、スクリプトを使用して、SVT がタイルをロードするように手動でリクエストする必要があります。これを行うには、以下のように VirtualTexturing.Streaming.RequestRegion
メソッドを使用します。
VirtualTexturing.Streaming.RequestRegion(Material, Stack ID, Rect, mipmap, numMips)
このメソッドを使用して、まだ表示されていないすべてのタイルをロードすることができます。これにより、事前フェッチシステムの構築などを行うことができます。このメソッドをフレームごとに呼び出す必要があります。そうしないと、システムはタイルが不要であると見なし、他のタイルをストリーミングするときにこのタイルを削除する可能性があります。
シェーダーグラフの Virtual Texture Property のすべてのテクスチャスロットに割り当てを行う必要があります。
SVT は、Virtual Texture Property に割り当てたテクスチャの固有の組み合わせを、ストリーミング仮想テクスチャの固有のセクションにコピーします。そのため、Virtual Texture Property に多くの異なる組み合わせのテクスチャを使用する場合、各組み合わせが別々に保存されるため、プロジェクトのビルドサイズが大きくなる可能性があります。
シェーダーグラフで Sample Virtual Texture ノードを使用する際には、いくつかの制限があります。
VirtualTexturing.Streaming.RequestRegion
を参照してください。Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.