The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

0 votes

Hi, I want to create the following effect with the text in my game that you get when in illustrator you choose "Effect -> Stylize -> Outer Glow" and select the mode "multiply"

enter image description here

I think it makes the font stand more out and looks better.
How can I achieve this effect on a font in Godot? Tried using the environment glow/bloom effect but couldn't get it looking like this. Also searched for shaders, but found nothing like that.

Godot version 3.4
in Engine by (207 points)

1 Answer

+1 vote

I don't have a good answer for you, but I have tried something similar in the past and found it impossible.
The way Godot treats text, each letter has a very small, tight bounding box, and the glow effect gets cropped around each letter.

If you manage to get an outline shader working you'll have a good starting base, since outlines are similar to what you want, except for the soft gradient. Example of outline shader: https://godotshaders.com/shader/2d-outline-stroke/
You'll see that it doesn't really work with text. Note that Godot has an special "outline" parameter for text; I believe this is a developer's hack to get around this limitation.

Another approach would be somehow duplicating the text as an image, perhaps rendering it to a viewport texture, modulating and blurring said texture and showing it behind the actual text.

by (194 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.