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 :
|
private static boolean checkEntity(Entity entity) { |
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);
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 :