[1.7.2]Synchronise float arrays between client and server
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By zombiebear99 · Posted
i only made changes to the things shown in tutorial ie. mod id and mod group -
It wasnt mappings issue, I was reading fabric and not forge. Fabric has PlayerEntity while forge has Player. Through a mixin I was able to change the player's velocity so that there is a sort of slow-motion type movement. Only issue is that jumping seems to be handled separately. Changing that velocity only makes the jump lower, not slower. Unsure how to increase the duration in which a jump happens. @Mixin(LivingEntity.class) public abstract class ExampleMixin extends Entity { public ExampleMixin(EntityType<?> type, World world) { super(type, world); } @Inject(method = "tickMovement", at = @At("HEAD")) private void onTickMovement(CallbackInfo ci) { // Access the player entity LivingEntity entity = (LivingEntity)(Object)this; // Modify player's acceleration by applying a force in the opposite direction double slowdownFactor = 0.75; // Adjust as needed entity.setVelocity(entity.getVelocity().multiply(1, slowdownFactor, 1)); } }
-
By Fablepandaroux · Posted
Hi so i made a modded survival, and when i go to the page 13 of my JEI, my game instant crash and give this error "The game crashed whilst rendering item Error", I don't know what to do i give you the crash report : https://pastebin.com/EhzYdEZg -
By Paint_Ninja · Posted
You need to run build at least once before running the game for the first time in a dev environment. Make sure stuff's working *before* you start making changes to the mdk template
-
Topics
-
Who's Online (See full list)
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now