Add animation smoothing plugin

This commit is contained in:
Adam
2018-04-08 18:44:26 -04:00
parent 6a78fb76dd
commit c66cb42a52
17 changed files with 992 additions and 0 deletions

View File

@@ -369,4 +369,16 @@ public interface Client extends GameEngine
void setHintArrow(Player player);
void setHintArrow(NPC npc);
boolean isInterpolatePlayerAnimations();
void setInterpolatePlayerAnimations(boolean interpolate);
boolean isInterpolateNpcAnimations();
void setInterpolateNpcAnimations(boolean interpolate);
boolean isInterpolateObjectAnimations();
void setInterpolateObjectAnimations(boolean interpolate);
}