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 everyone,

I've been trying to use the new shading language in the 3.0 beta, and can't quite figure it out. I am working with 2D sprites, so I have been using the "canvas_item" shading type. In 2.1, I could halve the RED value of each pixel's color with the following fragment shader:

COLOR.r /= 2.0;

How would I go about this using the new shading language? Is there another way (without using shaders) to achieve the same effect?

in Engine by (29 points)

1 Answer

+2 votes
Best answer

The shader to halve the red value in Godot 3.0 would be:

shader_type canvas_item;

// Executed for every pixel covered by the sprite on screen
void fragment() {

    // Fetch the texture's pixel
    vec4 col = texture(TEXTURE, UV);

    // Halve R
    col.r /= 2.0;

    // Assign the color to the output
    COLOR = col;
}

You can also do this by halving the color in the modulate property, because that color is multiplied with the sprite's pixels to tint it, so halving R will halve the final result.

by (29,360 points)
selected by

Thank you! Followup question - I had tried doingCOLOR.r /= 2, but that didn't work. I thought it was because it read-only and couldn't be set, which is what the docs claim. Am I interpreting the docs wrong, or are they incorrect?

COLOR is an output variable, so even if you could do this, it would still give you nothing. In 3.0 you have to fetch the pixel color from the texture first, like I did in my example.

Ah, that explains a lot. How can I find out if a variable is input or output?

The doc says it http://docs.godotengine.org/en/latest/learning/features/shading/shading_language.html#id4
Note that COLOR here is NOT the texture color, it's the vertex color. So for example, if you render a polygon, each point of that polygon can have a color, and that's the one you get...
Damn I wonder why COLOR is even writable in fragment shader then... you can check yourself, my shader works xD I have to check something

Edit: I checked the latest 2D shader demos, COLOR seems to be the way... the doc says in but it's also an output

After some testing it looks like COLORis only an output. I'll update the docs and see if anyone knows about any other incorrect variables. Thanks for your answers!

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.