1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-04 17:04:49 +00:00

Flip convention of motion vector to point from current pixel to the previous pixel.

This commit is contained in:
Dario
2023-08-28 09:27:49 -03:00
parent 713bfaf5ea
commit f14c944c21
2 changed files with 2 additions and 2 deletions

View File

@@ -320,7 +320,7 @@ vec3 temporal_antialiasing(uvec2 pos_group_top_left, uvec2 pos_group, uvec2 pos_
vec2 velocity = imageLoad(velocity_buffer, ivec2(pos_screen)).xy;
// Get reprojected uv
vec2 uv_reprojected = uv - velocity;
vec2 uv_reprojected = uv + velocity;
// Get input color
vec3 color_input = load_color(pos_group);