how I can change the color to a texture of a sprite png?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By orelvis15
:warning: Old Version Published before Godot 3 was released.

is not this what you want?

volzhs | 2016-06-20 14:56

it only affects the brightness of the image, but it does not change the color.

orelvis15 | 2016-06-20 16:37

can you post your test image?

volzhs | 2016-06-20 16:40

this is what happens when I change the value

orelvis15 | 2016-06-20 16:50

Modulate multiplies base color.
Your image has only blue color.
So, Any color modulate affects only blue color.
Thus, it changes only brightness of blue color.
if you want to change color of that image,
make it mono(gray) color and set modulate color.

volzhs | 2016-06-20 17:04

was just that, thanks.

orelvis15 | 2016-06-20 18:45

:bust_in_silhouette: Reply From: volzhs

Modulate multiplies base color.
Your image has only blue color.
So, Any color modulate affects only blue color.
Thus, it changes only brightness of blue color.
if you want to change color of that image,
make it mono(gray) color and set modulate color.

wrote my last comment as answer.