[Legacy] GeckoLib Fabric

[Legacy] GeckoLib Fabric

4M Downloads

event.isMoving() not detected on block that sink you a littlebit.

MalfuXT opened this issue ยท 2 comments

commented

i test it on my mob and antique beasts mod.
if they walk on soul sand and honey block. mob will detect it as idle somehow.

private PlayState predicate(AnimationState event) {
if (event.isMoving()) {
event.getController().setAnimation(RawAnimation.begin().then("walk", Animation.LoopType.LOOP));
} else {
event.getController().setAnimation(RawAnimation.begin().then("idle", Animation.LoopType.LOOP));
}
return PlayState.CONTINUE;
}

that is the code that i use for moving and idle.

i'm on geckolib 4.7 and minecraft fabric 1.20.1.

please let me know if its just happen for me, or happen to anyone else, maybe something to fix.

commented

Might need to adjust the movement threshold maybe in your renderer getMotionAnimThreshold

commented

thank you!!

so to make it work i put it in Renderer

like this.

Override
public float getMotionAnimThreshold(ArcherEntity animatable) {
return 0.008F; // Adjust this value as needed, default is 0.015F
}