Comments

Log in with itch.io to leave a comment.

Amazing. Thank you

thanks for the help, i have been trying to do this for almost a month

This is amazing thank you!

Very high quality tutorial and demo.

(+2)

How you achieved the godrays?

(+1)

This is genuinely so cool as someone who's getting started with godot, thank you for making this :)

good

(+1)

for anyone having troubles with the edge detection shader in the demo this is because you are probably using a higher version of godot. The following has the code to change based on your version.

The project comes in 4.2 version even tho the vid shows 4.3+ version at 3:40 Godot 4.2: https://docs.godotengine.org/en/4.2/tutorials/shaders/advanced_postprocessing.ht... 

void vertex() {

POSITION = vec4(VERTEX, 1.0);


Godot 4.3+: https://docs.godotengine.org/en/4.3/tutorials/shaders/advanced_postprocessing.ht... 


void vertex() {

POSITION = vec4(VERTEX.xy, 1.0, 1.0); 


If stops working/breaks again in future look at https://docs.godotengine.org/en/stable/tutorials/shaders/advanced_postprocessing... for insight

(+1)

Thanks for the help

(+1)

Thanks for the reply, it was a mistake on my end. Should be fixed now

(+1)

i downloaded the demo file, i don't really know why the edge detection not working when i run it

Deleted 72 days ago
(+2)

The problem should be fixed now, I recommend downloading it again

🥰🥰🥰