firework particles (and probably particles in general) are not made above the maximum height of the world
Lolothepro opened this issue ยท 1 comments
Version information
Sodium alpha 6 - 1.18.1
Expected Behavior
We should see the particles
Actual Behavior
The particles are not rendered
Reproduction Steps
Video:
output.compress-video-online.com.5.mp4
Java version
Java 17
CPU
Ryzen 1600
GPU
GTX 1070
Additional information
No response
It looks like this behavior is caused by Sodium's particle culling.
To perform particle culling, Sodium skips rendering any particles that are not in a visible chunk section. However, particles above or below the world height are never in a visible chunk section, causing them to always be culled.
A fix similar to 885222a would likely resolve this issue.