Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
turanszkij committed Feb 15, 2025
1 parent 8fc6d4d commit e35b188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WickedEngine/shaders/hairparticle_simulateCS.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ void main(uint3 DTid : SV_DispatchThreadID, uint3 Gid : SV_GroupID, uint groupIn
}

vertexBuffer_POS[v0] = float4(position, 0);
vertexBuffer_NOR[v0] = half4(normalize(normal + wind), 0);
vertexBuffer_NOR[v0] = half4(normal, 0);
vertexBuffer_UVS[v0] = uv.xyxy; // a second uv set could be used here

if (distance_culled)
Expand Down

0 comments on commit e35b188

Please sign in to comment.