LtxProgrammer / LtxProgrammer/Changed-Minecraft-Mod

Missing Detail on EmoteParticle

Open Beginner friendly
#1,852 0 comments 0 reactions 0 assignees View on GitHub

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

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.