Culling & Depth Testing

  Culling is an optimization that does not render polygons facing away from the viewer. All polygons have a front and a back side. Culling makes use of the fact that most objects are closed; if you have a cube, you will never see the sides facing away from you (there is always a side facing you in front of it) so we don't need to draw the sides facing away. Hence the term: Backface culling.

  The other feature that makes rendering looks correct is Depth testing. Depth testing makes sure that only the closest surfaces objects are drawn in a scene.

  Culling & Depth Testing

[syntax]

Culling & Depth Testing

参考:file://localhost/Applications/Unity/Unity.app/Contents/Documentation/Documentation/Components/SL-CullAndDepth.html

 

 

相关文章:

  • 2021-06-04
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-06
  • 2021-08-07
  • 2021-05-17
  • 2021-07-10
  • 2022-02-25
  • 2021-12-05
相关资源
相似解决方案