Skip to main content

Default RenderPass Questions

Answered

Comments

1 comment

  • Jason Stanczyk
    1. Its purpose is to make sure that Transparent objects are rendered correctly by rendering the opaque objects first and the ones with Transparent tag later on. You may find more information about Transparency Sorting here and in Kanzi documentation page here. If you don't need to render transparent items, you can remove it.
    2. It basically draws the objects with Transparent tag to handle transparency rendering correctly. If you don't have transparent nodes, then you can remove it.
    3. It gathers the lights in the scene and applies to the nodes during the child draw commands. If you remove it, it would also remove Draw Objects Opaque render pass so you would need move Draw Object Opaque up first and then you can remove Gather List Render Pass if you don't need any lights on the scene.

    The Transparent Tag cannot be removed, you can only remove Transparent Object Sources and the render pass. 

     

    0

Please sign in to leave a comment.