Effects for 2D nodes

Use effects to apply post-processing effects to 2D nodes.

In Kanzi Studio you can find the effects in the Library > Effects.

../../_images/effects-library.png

These effects are available in Kanzi:

Use the Blur Effect 2D effect to apply a Gaussian blur to a 2D node.

See Using the Blur Effect 2D effect.

../../_images/blur-effect-2d-large1.png

Use the Mask Effect 2D effect to apply a mask to a 2D node.

See Using the Mask Effect 2D effect.

../../_images/mask-effect-2d-large1.png

Use the Outline Effect 2D effect to apply an outline to the content of a 2D node.

See Using the Outline Effect 2D effect.

../../_images/outline-effect-2d-large1.png

Use the Shadow Effect 2D effect to apply a shadow to the content of a 2D node.

See Using the Shadow Effect 2D effect.

../../_images/shadow-effect-2d-large1.png

Use an Effect Stack 2D effect prefab to apply multiple effects to a 2D node.

See Using multiple effects.

../../_images/effect-stack-2d-large1.png

How Kanzi applies 2D effects

Kanzi applies 2D effects to the visual shape of the content in a node and its descendant nodes.

../../_images/effect-node.png ../../_images/parent-children-effect-preview.png

When you want to apply an effect to a node but not to its descendant nodes, place the descendant nodes in a sibling node of the node to which you apply the effect. Position that sibling node in the node tree below the node to which you apply the effect. Make sure that the sibling nodes are of the same size, layout, transformation, and opacity.

../../_images/effect-node-2.png ../../_images/parent-only-effect-preview.png

Effects and layout

When you use effects, keep in mind that:

  • Kanzi does not take effects into account when calculating layout. When your design does not allow an effect to exceed the layout bounds, make sure that there is enough space in the layout for that effect.

    For example, in a layout that contains a Text Block 2D node where you apply a drop shadow, in that Text Block 2D node ensure sufficient space for the shadow by setting the Horizontal Margin and Vertical Margin properties.

    ../../_images/shadow-margin.png
  • When Kanzi applies an effect to a 2D node, it composites that node and clips its descendant nodes to the node bounds, regardless of the value of the Clip Children property. This happens because the size of the render target texture matches the size of the node.

Impact of effects on application performance

For every instance of an effect Kanzi requests the composition manager to provide a temporary composition target. Kanzi composition manager reuses temporary composition targets if they are compatible in size and parameters.

The final performance of an application that uses effects depends on:

  • The amount of allocated memory, and therefore the bandwidth required to render the UI of the application

  • The number of draw calls

  • The number of render target or texture switches

To find the most efficient way of using effects, test the performance of your application with these approaches:

  • Apply a separate effect to each UI element to minimize the area.

  • Apply an effect to a group of UI elements that cover a larger area.

Applying anti-aliasing

When you apply an effect to a 2D node, Kanzi renders that node to a composition target. By default, Kanzi does not apply anti-aliasing to the child nodes of a composited node. For example, when you rotate these nodes, their edges can look jaggy.

../../_images/node-tree-flow-layout1.png ../../_images/preview-no-msaa1.png

To apply multisample anti-aliasing:

  1. In the Node Tree or Prefabs, select the node to which you apply the effect.

  2. In the Properties, add the Render Target > Multisample Level property and set it to the number of anti-aliasing samples that you want to use.

    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 that your device does not support, Kanzi Engine clamps the value to the largest value supported by the device driver.

    ../../_images/properties-multisample-level1.png ../../_images/preview-4x-msaa1.png

See also

Using the Blur Effect 2D effect

Using the Mask Effect 2D effect

Using the Outline Effect 2D effect

Using the Shadow Effect 2D effect

Using multiple effects

Using effects in the Kanzi Engine API

Adjusting the appearance of 2D nodes

Using brushes

Rendering