We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you have entity culling enabled + some mod that renders entity outlines, EntityCulling will cancel the render of the outlines.
This method needs to be changed :
Patcher/src/main/java/club/sk1er/patcher/util/world/render/culling/EntityCulling.java
Line 174 in 4ce6e19
Current :
if (renderingSpawnerEntity) return false; OcclusionQuery query = queries.computeIfAbsent(entity.getUniqueID(), OcclusionQuery::new);
Fixed :
if (renderingSpawnerEntity || renderManagerAccessor.isRenderOutlines()) return false; OcclusionQuery query = queries.computeIfAbsent(entity.getUniqueID(), OcclusionQuery::new);
The text was updated successfully, but these errors were encountered:
Fix Sk1erLLC#185 and Sk1erLLC#186
b3e064a
No branches or pull requests
If you have entity culling enabled + some mod that renders entity outlines, EntityCulling will cancel the render of the outlines.
This method needs to be changed :
Patcher/src/main/java/club/sk1er/patcher/util/world/render/culling/EntityCulling.java
Line 174 in 4ce6e19
Current :
Fixed :
The text was updated successfully, but these errors were encountered: