Is there a way to reverse gravity/make the player go upside down?

Started by FRAGMENTED_VOID on

Topic category: Help with modding (Java Edition)

Last seen on 14:23, 13. Apr 2022
Joined Jul 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Is there a way to reverse gravity/make the player go upside down?

so I want to make a mod that in some biomes, everything is normal, but if you walk into a particular biome, the gravity is reversed, and you fall onto the ceiling, like the gravity in this video https://www.youtube.com/watch?v=kiGTjJD4JsY
how do I do this?

 

Last seen on 14:24, 21. Feb 2022
Joined Jun 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
That's very complicated and…
Mon, 07/19/2021 - 13:47

That's very complicated and probably will need advanced rendering code. MCreator isn't capable of such things and if you need to do it it's probably better to learn modding without MCreator. You can give the player the levitation status effect to lift the player up however.

Last seen on 18:17, 3. Jul 2023
Joined Jun 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
What if you just multiply…
Sat, 12/03/2022 - 19:12

What if you just multiply current vector movement of the player by -1, so it just makes upward movement go downward and vice-versa ?