Using the Outline Effect 2D effect

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

For example, use the Outline Effect 2D effect to apply an outline to text that comes from a data source.

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

Creating an outline color effect

To create an outline color effect:

  1. In the Library, press Alt and right-click Effects and select Outline Effect 2D.

    ../../_images/create-outline-effect-2d.png
  2. In the Node Tree or Prefabs, create a 2D node to which you want to apply the outline effect.

    ../../_images/text-block-2d-in-node-tree.png ../../_images/text-block-2d-in-preview.png
  3. From the Library > Effects > 2D Effects, drag the Outline Effect 2D effect to the 2D node to which you want to apply the outline effect.

    This way you set in that 2D node the Effect Prefab property to the Outline Effect 2D effect.

    Kanzi applies to the visual shape of the content in the 2D node an outline that is black and four pixels wide.

    ../../_images/drag-outline-effect-to-node.png ../../_images/outline-effect-prefab-set.png ../../_images/outline-effect-default-preview.png
  4. In the Library, select the Outline Effect 2D effect. In the Properties, use these properties to set the appearance of the outline:

    • Outline Width sets the thickness of the outline in pixels.

    • Outline Color sets the color of the outline.

    • Outline Softness sets the length of a gradient, relative to the width of the outline, that softens the outline.

    ../../_images/outline-color-properties.png ../../_images/outline-color-in-preview.png

Creating a textured outline

You can apply a one-dimensional texture to an outline that you create with the Outline Effect 2D effect. For example, you can use a texture to add multiple strokes to text.

To create a textured outline:

  1. Create an outline effect for a 2D node. See Creating an outline color effect.

    ../../_images/outline-effect-prefab-set.png ../../_images/outline-effect-default-preview.png
  2. In the Library, select the Outline Effect 2D effect. In the Properties, add and set:

    • Outline Width to the thickness in pixels that you want for the outline.

    • Outline Color to the color with which you want to modulate the color values in the outline texture.

      To apply the colors in the outline texture as they are, set Outline Color to white.

    • Outline Texture to the texture that you want to apply to the outline.

      Kanzi applies to the outline only the top row of pixels from this texture. The leftmost pixel in the texture maps to the innermost part of the outline and the rightmost pixel to the outmost part of the outline. Kanzi scales the width of the texture to the width of the outline.

      For example, in the Outline Texture dropdown select + Import Image and import this image:

      ../../_images/outline-texture-grays.png
    ../../_images/outline-textured-properties.png ../../_images/outline-textured-in-preview.png
  3. (Optional) To position and scale the texture along the outline, in the Properties, add and set these Outline Effect 2D properties:

    • Outline Texture Offset sets the relative start position at which Kanzi starts to sample the texture.

      For example, to start the outline with the middle gray shade in the example texture, set Outline Texture Offset to 0.33.

    • Outline Texture Tiling sets the value by which Kanzi scales the outline texture.

      For example, to create an outline that shows the texture twice, set Outline Texture Tiling to 2.

    ../../_images/outline-repeated-texture-properties.png

    Tip

    When you want a texture to repeat to cover the outline, in the Library > Materials and Textures > Textures, select that texture, and in the Properties, set Wrap Mode to Repeat.

    ../../_images/gray-levels-outline-texture-in-library.png ../../_images/wrap-mode-repeat1.png
    ../../_images/outline-texture-tiled-in-preview.png

Customizing an instance of an outline effect

When you edit the properties of an effect in the Library > Effects, you change the appearance of that effect for all nodes that use it. You can customize each effect instance by overriding the effect property values. For example:

  • When you create a Shadow Effect 2D effect, you can vary the softness of the shadow in different instances of that effect.

  • When you create a Mask Effect 2D effect, you can vary the size of the mask in different instances of that effect.

  • When you create a Blur Effect 2D effect, you can vary the amount of blur in different instances of that effect.

  • When you create an Outline Effect 2D effect, you can vary the color of the outline in different instances of that effect.

To customize an instance of an effect:

  1. Create an effect and set a node to use it.

    For example, create a Shadow Effect 2D effect and set an Image node to use it. See Creating a shadow effect for a 2D node.

    ../../_images/effect-prefab-property-set.png ../../_images/image-in-preview-w-shadow.png
  2. In the Node Tree or Prefabs select the node that uses the effect that you created, in the Properties click + Add Binding, and in the Binding Editor set:

    • Binding Mode to To source

    • Push Target to .Node2D.Effect

      This way you target the instance of the effect used by the 2D node to which you add this binding.

    • Property to the effect property whose value you want to set in the node to which you add this binding.

      For example, set it to the Shadow Effect 2D > Shadow Blur Radius property, which sets the softness of the shadow.

    • Expression to an expression that returns the value to which you want to set the Property.

      For example, set it to the Shadow Blur Radius property in the same node:

      {@./ShadowEffect2D.BlurRadius}
      

    Click Save.

    ../../_images/shadow-blur-radius-to-source-binding.png
  3. (Optional) Repeat the previous step to create a binding for each effect property whose value you want to set in the node to which you add the bindings.

  4. Adjust the appearance of the effect only in the node to which you added the bindings.

    For example, in the Properties add the Shadow Effect 2D > Shadow Blur Radius property and use it to adjust the softness of the shadow only in the Image node.

    ../../_images/adjust-shadow-blur-radius.gif

Using the Outline Effect 2D effect in the API

To create an outline effect:

// Create an outline effect template.
NodeEffectTemplate2DSharedPtr outlineEffectTemplate =
    NodeEffectTemplate2D::create(OutlineEffect2D::getStaticMetaclass()->getName(), "OutlineEffect");

// Set the value of the WidthProperty in the outline effect template.
// The WidthProperty defines the maximum width of the outline outside the content area.
outlineEffectTemplate->addPropertyValue(OutlineEffect2D::WidthProperty, Variant(8));

// Create an outline effect prefab.
NodeEffectPrefab2DSharedPtr outlineEffectPrefab =
    NodeEffectPrefab2D::create(getDomain(), "OutlineEffect prefab", outlineEffectTemplate);

// Assign the outline effect to a 2D node.
node2d->setEffectPrefab(outlineEffectPrefab);

// Get the node-specific effect instance created from the assigned prefab.
OutlineEffect2DSharedPtr outlineEffect = dynamic_pointer_cast<OutlineEffect2D>(node2d->getEffect());

// Set the SoftnessProperty to 0.7 for this node only. This overrides
// the property default value defined by the OutlineEffect2D metaclass.
outlineEffect->setSoftness(0.7f);

For details, see the OutlineEffect2D class in the Kanzi Engine API reference.