当着色器在 GPU 上运行的程序。 更多信息
参见 词汇表程序包含在编译时评估的条件语句时,它使用静态分支。编译器将排除来自未使用分支的代码,因此它不会出现在已编译的着色器程序中。
在内部,Unity 在创建着色器变体时使用静态分支。静态分支本身不会带来着色器变体任何性能上的缺点。
静态分支的主要优点是它不会对运行时性能造成负面影响。静态分支的主要缺点是您只能在编译时使用它。
静态分支意味着编译器会从着色器程序中排除不需要的代码。它会生成小型、专门的着色器程序,其中只包含必要的代码。静态分支不会产生运行时性能成本;事实上,更小的程序可能会导致更快的加载时间和更低的运行时内存使用量。
要使用静态分支,条件必须在编译时保持不变。这意味着您不能使用它在运行时为不同的条件执行代码。
当着色器程序包含在运行时评估的条件语句时,它使用动态分支。
动态分支有两种类型:基于统一变量的动态分支和基于任何其他运行时值的动态分支。基于统一变量的分支通常效率更高,因为统一变量值对于整个绘制调用保持不变。
您可以使用着色器关键字进行动态分支。这使您可以使用 C# 脚本一段代码,使您能够创建自己的组件、触发游戏事件、随时间推移修改组件属性以及以任何您喜欢的方式响应用户输入。 更多信息
参见 词汇表和材质 检查器Unity 窗口,显示有关当前选定游戏对象、资产或项目设置的信息,允许您检查和编辑值。 更多信息
参见 词汇表来配置着色器的运行时分支行为。这会导致基于统一变量的分支;当您执行此操作时,Unity 会将着色器关键字编译为统一变量。
动态分支的主要优点是它允许您在运行时使用条件语句,而不会增加项目中着色器变体的数量。动态分支的主要缺点是它会影响 GPU 性能。
GPU 性能影响会因硬件和着色器代码而异。原因如下
一般来说,如果您的代码分支基于统一值并且两个分支的工作量大致相似,那么对 GPU 性能的影响很可能很小。但是,您应该始终分析应用程序并逐案考虑优点和缺点。
注意:动态分支也可能导致较大的着色器程序,因为所有条件的代码都被编译到同一个着色器程序中。但是,这些较大的文件对加载时间和内存使用量的影响通常比着色器变体的影响小。
有关在着色器中使用条件语句的其他方法以及如何确定哪种技术适合您的用例的信息,请参阅着色器中的条件语句。
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.