Skip to content
New issue

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

Flipped throwable item sprites fix (MCPE-66385) #57

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion developer_documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* [UI modifications](#ui-modifications)
* [Structure block texture changes (MCPE-48224)](#structure-block-texture-changes-mcpe-48224)
* [Cherry Fence Gate Sound Fix (MCPE-168021)](#cherry-fence-gate-sound-fix-mcpe-168021)
* [Flipped throwable item sprites fix (MCPE-66385)](#flipped-throwable-item-sprites-fix-mcpe-66385)
<!--te-->

### Introduction
Expand Down Expand Up @@ -398,4 +399,17 @@ Both Java and Bedrock don't have this sound, so GeyserOptionalPack fixes this by
}
```

See https://bugs.mojang.com/browse/MCPE-168021 for the associated bug report.
See https://bugs.mojang.com/browse/MCPE-168021 for the associated bug report.

### Flipped throwable item sprites fix (MCPE-66385)

As seen below, the models of all throwable item entities (e.g. snowballs, ender pearls, potions) are incorrectly flipped:

Java
![Java](https://github.com/user-attachments/assets/1b77bb09-5c49-465e-ae84-f626184354f2)
Bedrock
![Bedrock](https://github.com/user-attachments/assets/eda75501-42b2-4b1f-a19f-47b7be81d754)

GeyserOptionalPack fixes this by correctly rotating the model 180 degrees on the Y axis.

The model was also updated to be 3D like Java, as on Bedrock the model is a 2D sprite.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"description": "Optional Bedrock resource pack to extend Geyser functionality",
"name": "GeyserOptionalPack",
"uuid": "e5f5c938-a701-11eb-b2a3-047d7bb283ba",
"version": [1, 0, 11],
"version": [1, 0, 12],
"min_engine_version": [ 1, 16, 0 ]
},
"modules": [
{
"description": "GeyserOptionalPack",
"type": "resources",
"uuid": "eebb4ea8-a701-11eb-95ba-047d7bb283ba",
"version": [1, 0, 11]
"version": [1, 0, 12]
}
]
}
Loading