-
Bug
-
Resolution: Unresolved
-
None
-
1.18.2, 22w14a, 22w15a, 22w16b, 22w17a, 22w18a, 22w19a, 1.19 Pre-release 1, 1.19 Pre-release 3, 1.19 Release Candidate 2, 1.19, 1.19.1, 1.19.2, 22w45a, 1.19.3 Release Candidate 1, 1.19.3, 1.19.4, 23w17a, 23w18a, 1.20 Pre-release 1, 1.20 Pre-release 4, 1.20.1, 1.20.2, 1.21, 24w45a
-
Confirmed
-
Rendering
-
Low
-
Gameplay
The Bug:
The entity shadows of ender dragons are too small in relation to the size of their models.
Steps to Reproduce:
- Enable entity shadows in your video settings.
- Summon an ender dragon by using the command provided below.
/summon minecraft:ender_dragon ~ ~ ~ {NoAI:1b,Silent:1b}
- Look at the size of its shadow.
- Take note as to whether or not the entity shadows of ender dragons are too small in relation to the size of their models.
Observed Behavior:
The entity shadow is too small.
Expected Behavior:
The entity shadow would be made much larger to match the size of its model.
Code Analysis:
Code analysis by Avoma can be found below.
The following is based on a decompiled version of Minecraft 1.19 Pre-release 3 using Mojang mappings.
public class EnderDragonRenderer extends EntityRenderer<EnderDragon> { ... public EnderDragonRenderer(EntityRendererProvider.Context context) { super(context); this.shadowRadius = 0.5f; this.model = new DragonModel(context.bakeLayer(ModelLayers.ENDER_DRAGON)); } ...
If we look at the above class, we can see that the radius of ender dragons' shadows is 0.5f which is around the size of a block, which is too small in relation to the size of their models.
- relates to
-
MC-265479 The entity shadows of sniffers are too small in relation to the size of their models
- Open
-
MC-266685 The entity shadows of breezes are too large in relation to the size of their models
- Resolved
-
MC-249840 The entity shadows of frogs are slightly too small in relation to the size of their models
- Open
-
MC-249841 The entity shadows of allays are slightly too large in relation to the size of their models
- Open
-
MC-250107 The entity shadows of ghasts are too small in relation to the size of their models
- Open
-
MC-249386 The entity shadows of wardens are too small in relation to the size of their models
- Resolved