This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
+5 votes

I am trying to make a 'sine wave' shader and I would like to know how to convert VERTEX from local space to world space. I have tried to do that with this piece of code:

void vertex() {
    world_pos = (WORLD_MATRIX * vec4(VERTEX, 0.0, 1.0)).xy;
    VERTEX.y += sin(TIME * speed + world_pos.x * amp) * amount;
}

However the 'wave' is affected when I move the viewport.

https://i.imgur.com/L1Fs8Vq.gif

I would like to know what I'm doing wrong and how to fix this.

Thanks in advance.

in Engine by (17 points)
edited by

Does it act like that when the camera moves while the project is running?

Yeah, even when the camera moves while the project is running.

Please log in or register to answer this question.

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.