2D Item Highlight Shader

The following shader creates item highlight effect on any 2D sprite/Canvas Item. Also allows for control over the highlight color, time between consecutive highlight flashes, speed of each flash and the size of each flash (width).

You can also control the direction the flash moves in by playing around with the UV.x and UV.y signs (+ or -)

Ex. in the line starting with float value = ...  you can set -UV.x - UV.y  to make the flash flow from top left to bottom right. Play around with these values to see what fits your needs best.

Also, feel free to change the hint_range(s) in case the default ranges don’t cover your needs.

Shader code
shader_type canvas_item;

// The color that flashes when highlighting the sprite
uniform vec4 highlight_color : source_color = vec4(1.0, 1.0, 1.0, 1.0);

// Used to control the time between flashes
uniform float frequency : hint_range(0.0, 25.0) = 0.35;

// Speed of each flash
uniform float highlight_speed : hint_range(0.0, 25.0) = 6.0;

// How much area each flash covers (width)
uniform float highlight_width : hint_range(0.0, 50.0) = 15.0;

void fragment( )
{
	vec4 input_color = texture(TEXTURE, UV);
	float width = 0.001 * frequency * highlight_width / 2.0;
	
	// can play with + or - sign for each UV
	// to control which direction the highlight moves
	// ex. -UV.x - UV.y makes the highlight go from
	// top left to bottom right
	float value = floor(sin(frequency * ((UV.x - UV.y) + TIME * highlight_speed)) + width);
	
	// used to control when to use input color vs highlight color
	float highlight = value > 0.5? 1.0: 0.0;
	vec3 new_color = input_color.rgb * (1.0 - highlight) + highlight_color.rgb * highlight;
	COLOR = vec4(new_color, input_color.a);
}
Tags
2d, 4.2, 4.x, canvas item, flash, godot 4, highlight, item, shader, sprite
The shader code and all code snippets in this post are under CC0 license and can be used freely without the author's permission. Images and videos, and assets depicted in those, do not fall under this license. For more info, see our License terms.

Related shaders

Back glow effect for item backgrounds

Item Highlighter

electric ball canvas item

Subscribe
Notify of
guest

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
OlliBanjo
3 months ago

Thanks for your Shader, I used it for the gold coins

I used it in my game: (playable in browser)
https://ollibanjo.itch.io/deep-dive-pro