-
Bug
-
Resolution: Unresolved
-
None
-
Minecraft 19w07a, 1.20.6, 24w19b, 24w20a
-
Community Consensus
-
Textures and models
The textures for sleeping foxes contain pixels that go unused in-game. These sections are the two legs, which are not rendered at all when the entity has the sleeping model applied. Keeping these pixels in the texture incorrectly implies to resource pack creators that the legs should/could be retextured, when doing so will have no affect.
Unused Pixels
Fixes:
Code Analysis:
Here in the fox's model, you can see that the visibility of the fox's legs is set to false when the entity is sleeping, showing there is no need for the texture.
Package: net.minecraft.client.model / Class: FoxModel<T extends Fox> / Method: prepareMobModel()
. . . } else if (var1.isSleeping()) { this.body.zRot = -1.5707964F; this.body.setPos(0.0F, 21.0F, -6.0F); this.tail.xRot = -2.6179938F; if (this.young) { this.tail.xRot = -2.1816616F; this.body.setPos(0.0F, 21.0F, -2.0F); } . . . this.rightHindLeg.visible = false; this.leftHindLeg.visible = false; this.rightFrontLeg.visible = false; this.leftFrontLeg.visible = false; } . . .
Notes:
It is intentional that sleeping foxes do not render their legs per the resolution of MC-162360
- relates to
-
MC-248553 Texture map for villager types contain unused pixels
- Open
-
MC-248554 Unused pixels in lead_knot.png UV texture map
- Open
-
MC-257432 Ravagers have unused pixels in their texture
- Open
-
MC-260786 Default parrot textures have white background instead of transparent
- Open
-
MC-261715 Ocelot and some cat textures have unused pixels
- Open
-
MC-262454 Unused pixels in hopper top texture and hopper side texture
- Open
-
MC-262465 Unused pixels in cauldron textures
- Open
-
MC-262587 Unused pixels in item frame and glow item frame textures
- Open
-
MC-262588 Unused pixels in beacon texture
- Open
-
MC-262589 Unused pixels in brewing stand base texture
- Open
-
MC-262628 Unused pixels in tripwire.png texture
- Open
-
MC-262643 Unused pixels in chorus plant and chorus flower textures
- Open
-
MC-264552 Unused black pixels in enchanting table book texture
- Open
-
MC-266280 Grass block side texture has functionally unused pixels
- Open
-
MC-267291 Unused pixels in trident.png UV map texture
- Open
-
MC-267292 Unused pixels in phantom.png UV texture map
- Open
-
MC-267294 Unused pixels in camel.png UV texture map
- Open
-
MC-267305 Unused pixels in salmon.png texture UV map
- Open
-
MC-267307 Unused pixels in cold/temperate/warm_frog.png UV texture maps
- Open
-
MC-265305 Unused pixels in magmacube.png UV texture map & Used section removed in previous fix
- Resolved
-
MC-271357 The front and back legs of a fox cannot be independently retextured
- Open
-
MC-277529 Unused pixels in powered lightning rod texture
- Open
-
MC-275238 Unused pixels in dragon egg texture
- Resolved
-
MC-276842 Unused pixels in colormap textures
- Resolved