Smooth Entity Rotation

Started by Noii on

Topic category: Help with Minecraft modding (Java Edition)

Active 16 hours ago
Joined Jan 2016
Points:
875

User statistics:

  • Modifications: 0
  • Forum topics: 19
  • Wiki pages: 0
  • MCreator plugins: 1
  • Comments: 75
Smooth Entity Rotation

I'm currently using the "Set Rotation" Block to make an entity face the same direction as the player, and have it set to on entity tick update

 

Now this works... somewhat, but it is extremely choppy and looks janky, is there a smoother way to do this?

Active 5 months ago
Joined May 2023
Points:
318

User statistics:

  • Modifications: 1
  • Forum topics: 4
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 9
you could increment the…
Fri, 05/12/2023 - 05:09

you could increment the rotation by small values until the entity is facing the player

Active 16 hours ago
Joined Jan 2016
Points:
875

User statistics:

  • Modifications: 0
  • Forum topics: 19
  • Wiki pages: 0
  • MCreator plugins: 1
  • Comments: 75
i dont know how i would go…
Fri, 05/12/2023 - 20:34

i dont know how i would go about something like that though

Active 16 hours ago
Joined Jan 2016
Points:
875

User statistics:

  • Modifications: 0
  • Forum topics: 19
  • Wiki pages: 0
  • MCreator plugins: 1
  • Comments: 75
.
Wed, 05/17/2023 - 05:40

.

Active 16 hours ago
Joined Jan 2016
Points:
875

User statistics:

  • Modifications: 0
  • Forum topics: 19
  • Wiki pages: 0
  • MCreator plugins: 1
  • Comments: 75
Yall did not have my back on…
Sun, 09/17/2023 - 02:24

Yall did not have my back on this one, here's some video of how it looks though

Active 1 month ago
Joined Dec 2024
Points:
64

User statistics:

  • Modifications: 0
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 2
Kinda late but did you ever…
Sat, 12/21/2024 - 17:02

Kinda late but did you ever solve this?

Active 5 months ago
Joined Nov 2021
Points:
550

User statistics:

  • Modifications: 0
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 7
This jiggling is because you…
Sun, 03/02/2025 - 15:03

This jiggling is because you applying rotation for server and client in same time, just add "if not provided world client side" to start of the procedure and all will be fine