How to reproduce
Make yourself really small
/attribute @p minecraft:generic.scale base set 0.0625
Walk up to some blocks, or in between chests
❌ Notice that you can view through blocks
Linked issues
is duplicated by 9
relates to 2
Attachments
Comments 5
This is caused due to the near plane clipping only being 0.05, which is perfectly fine at normal scale. However when everything is 16x smaller, 0.05 is way too big.
This can be easily fixed by simply multiplying the near place clipping by the entity scale.
Working Fix: https://github.com/FxMorin/TinyWorld/blob/master/src/main/java/ca/fxco/TinyWorld/mixin/scale/GameRendererMixin.java
Really hoping this can be fixed soon, it shouldn't be too hard a fix and it's gonna have a massive impact on gameplay on my server if it doesn't.
Maybe minecraft can just add an attribute for view scale? this will fix other visual issues with scale such as seeming like you are flying if you have a very large scale attribute
Must be related to MC-8684 as well