LtxProgrammer / LtxProgrammer/Changed-Minecraft-Mod
Missing Detail on EmoteParticle
Nobody has claimed this yet.
- Dominant language
- Java
- Stars
- 83
- Forks
- 58
- Avg merge
- 1d 16h
- Merged PRs (30d)
- 2
Description
the "icon" seems to scale up/down with the size of the entity in the game changed, which doesn't happen in the mod.
my suggestion is to add this in the tick method ->
if (track instanceof LivingEntity livingTrack) {
float size = 0.3f * livingTrack.getScale();
this.setSize(size, size);
this.quadSize = 0.3f * livingTrack.getScale();
}
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Find the EmoteParticle class and its tick method, then inspect how the particle tracks a LivingEntity and sets its size. Verify the emote icon scales with the tracked entity's changing scale, matching the behavior described in the issue. Confirm the change in-game with an entity whose size changes.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- game-dev
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Active
- Clarity
- Mostly clear
- Newbie friendliness
- 72/100