How to make blur?

To make my object show (Article War) even higher-quality, I wanted to add blur, but it seems I don’t know how. Is there a way to make blur? Example of what I want to achievd:
image

(Characters are not mine)

Wick Editor does not have a native, one-click blur tool. The best methods to simulate blur are using JavaScript code to apply shadowBlur via Paper.js, or by manually placing a low-opacity white shape over an object to create a hazy effect, * Select the object you want to blur.

  • Open the Inspector panel.
  • Click on the Script tab.
  • Enter the following code in the onLoad tab:
    this.shadowBlur = 10;
    this.shadowColor = "white";
  • Adjust the 10 to increase or decrease the intensity of the blur.
1 Like