Unity の各シェーダーは、一群の SubShader (サブシェーダー) で構成されます。Unity がメッシュを表示する場合に、使用するシェーダーを見つけ、ユーザーのグラフィックスカードで実行する最初のサブシェーダーを選択します。
Subshader { [Tags] [CommonState] Passdef [Passdef ...] }
サブシェーダーをオプションのタグ、通常の状態、パス定義として定義します。
サブシェーダーは レンダリングパス を定義し、オプションで、すべてのパスに共通の状態を設定します。さらに、サブシェーダーの特有の タグ を設定できます。
Unity がレンダリングに使うサブシェーダーを選択する場合、定義された各パスごとに 1 回 (可能な場合は、ライトの相互作用のためにさらに多く) オブジェクトをレンダリングします。オブジェクトの各レンダリングはコストのかかる操作であるため、可能な限り最小限のパスでシェーダーを定義する必要があります。もちろん、一部のグラフィックスハードウェアでは、必要な効果を 1 回のパスで実行できない場合があります。その場合、複数のパスを使用する以外に選択肢はありません。
各パスの定義は 通常パス、UsePass、GrabPass のいずれかです。
パス定義で許可されるステートメントは、サブシェーダーの記述ブロックでも表示されます。これにより、すべてのパスでこの “共有の” 状態を使用することができます。
// ...
SubShader {
Pass {
Lighting Off
SetTexture [_MainTex] {}
}
}
// ...
このサブシェーダーでは 1 つのパスを定義し、すべてのライティングをオフにして、単に _MainTex という名前のテクスチャをもつメッシュを表示します。
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.