Step 1 - Render the car and headlights

In this step of the tutorial you create the render passes you need to render the car and the headlights separately.

Assets for the tutorial

The starting point of this tutorial is the <KanziWorkspace>/Tutorials/Bloom/Start/Bloom.kzproj Kanzi Studio project.

The assets that you use in this tutorial are stored in the <KanziWorkspace>/Tutorials/Bloom/Assets directory.

You can find the completed tutorial in the <KanziWorkspace>/Tutorials/Bloom/Completed directory.

Render the scene

In this section you create the render passes to render the entire scene.

To render the scene:

  1. In Kanzi Studio open the project stored in the <KanziWorkspace>/Tutorials/Bloom/Start directory.

    ../../_images/start.png
  2. In the Library press Alt and right-click Rendering, and select Compose and Blit Pass.

    Compose and Blit Pass contains the render pass structure that enables you to blit to the screen Composition Target Render Pass render passes or textures using a specific material.

    The Compose and Blit Pass render pass preset contains these render passes:

    • Composition Target Render Pass renders itself and its descendant render passes to one or more composition targets.

      • Clear Render Pass clears some or all of the buffers of the current render context.

        By default the Clear Render Pass in the Compose and Blit Pass clears the first color buffer with transparent black color and the depth buffer with value 1.

        For example, to clear the first color buffer with a different color, set the Clear Color 0 property to the color that you want to use as the background color of the content that Kanzi renders to the Composition Target Render Pass.

      • Gather Lights Render Pass collects the Light nodes in the Viewport 2D node that you set to use the Compose and Blit Pass, and passes them to its child Draw Objects Render Pass render pass.

        • Draw Objects Render Pass named Draw Objects allows you to set a Camera node to render a specific list of nodes, to filter those nodes, and to control frustum culling. Draw Objects Render Pass by default renders nodes using the lights provided by its nearest ancestor Gather Lights Render Pass. By default the Draw Objects Render Pass uses the default Camera node to render all nodes in a Viewport 2D node.

    • Blit Render Pass blits one or more textures on the screen using a specific material.

      By default this Blit Render Pass draws on the screen the first color texture to which the Composition Target Render Pass renders its content.

      ../../_images/compose-and-blit-pass-create3.png ../../_images/compose-and-blit-pass-library4.png
  3. In the Library > Rendering > Render Pass Prefabs select the Compose and Blit Pass render pass prefab, press the F2 key, and rename it to Bloom.

    You use this render pass prefab to gather several render passes that you create in this procedure which, when combined, render the car and apply the bloom effect to the headlights.

    ../../_images/bloom-in-library.png
  4. In the Library > Rendering > Render Pass Prefabs > Bloom render pass prefab rename:

    • Composition Target Render Pass to Render Scene

      You use this render pass to render the content of the Viewport 2D node Car to a composition target, which you later use as input for the render pass to pick only the headlights.

    • Blit Render Pass to Show Scene

      You use this render pass to draw on the screen the Render Scene render pass which renders the content of the Viewport 2D node Car.

    ../../_images/render-scene-show-scene-in-library.png
  5. In the Node Tree select the RootPage > Scroll View 2D > Car node, in the Properties add the Render Pass Prefab property, and set it to Bloom.

    Kanzi Studio renders the Viewport 2D node Car using the Bloom render pass prefab.

    ../../_images/car-in-project.png ../../_images/car-render-pass-property.png ../../_images/preview-background-color-set.png
  6. To apply anti-aliasing to the car, in the Library select the Render Scene render pass, in the Properties add the Multisample Level property, and set it to the number of anti-aliasing samples you want to use.

    For example, set it to 4.

    See the documentation of the device on which you want to run your Kanzi application for supported values, because the number of anti-aliasing samples depends on the device. If you set the Multisample Level property to a value which your device does not support, Kanzi Engine clamps the value to the largest value supported by the device driver.

    ../../_images/render-scene-in-library-2.png ../../_images/render-scene-multisample-level.png ../../_images/preview-with-multisampling.png

Render the headlights

In this section you create the render passes and material that you need to render only the car headlights to which you later apply the bloom effect.

To render the headlights:

  1. In the Library right-click Materials and Textures, select Load Material Type From Disk, go to <KanziWorkspace>/Tutorials/Bloom/Assets, and load the BloomThreshold.kzmat material type.

    Kanzi Studio adds the BloomThreshold material type and creates the BloomThresholdMaterial material which supports rendering only the regions which are brighter than a specific threshold value.

    The fragment shader of the BloomThreshold material type:

    • Maps the color values less than or equal to a threshold value to 0.

    • Maps the color values greater than a threshold value to a cubic equation approaching 1 when the color value approaches 1.

    ../../_images/load-material-type-from-disk1.png ../../_images/bloomthresholdmaterial-in-library.png
  2. In the Library > Rendering > Render Pass Prefabs > Bloom render pass prefab create a Group Render Pass and name it Render Bloom.

    ../../_images/render-bloom-in-library.png
  3. In the Render Bloom render pass create a Blit Render Pass, name it Blit Bloom Threshold, from the Library drag the Render Scene render pass to the Properties window, and drop it on the Texture 0 property of the Blit Bloom Threshold render pass.

    You set the Blit Bloom Threshold render pass to draw to the screen the texture that the Render Scene render pass creates from the content that it renders.

    ../../_images/blit-bloom-threshold-in-library.png ../../_images/blit-bloom-threshold-texture0-binding.png
  4. In the Properties add and set:

    • Material to BloomThresholdMaterial

    • Material Properties > Threshold to 0.9

    You use this render pass to draw to the screen only those regions of the car node that are brighter than the value of the Threshold property. Later you apply a Gaussian blur to these regions to create the bloom effect.

    ../../_images/blit-bloom-threshold-properties.png ../../_images/preview-threshold-applied.png
  5. In the Library in the Render Bloom render pass create a Composition Target Render Pass, name it Bloom Threshold, and drag the Blit Bloom Threshold render pass to the Bloom Threshold render pass.

    You use the Bloom Threshold render pass to render the Blit Bloom Threshold render pass to a composition target, which you later use as input to the render passes that apply the bloom effect. Because Kanzi renders the Blit Bloom Threshold render pass to a composition target, the Preview does not show it.

    ../../_images/bloom-threshold-in-library.png ../../_images/preview-with-multisampling.png

< Introduction | Next step >

See also

To learn more about the render passes in Kanzi, see Rendering.

To learn more about materials and material types, see Material types and materials.