diff --git a/core/src/gdx/diablo/entity/Entity.java b/core/src/gdx/diablo/entity/Entity.java index c5253441..f8b3fcb7 100644 --- a/core/src/gdx/diablo/entity/Entity.java +++ b/core/src/gdx/diablo/entity/Entity.java @@ -426,6 +426,13 @@ public class Entity { */ } + // TODO: This seems to work well with the default movement speeds of most entities I've seen + if (mode.equalsIgnoreCase("WL")) { + //animation.setFrameDelta(128); + } else if (mode.equalsIgnoreCase("RN")) { + //animation.setFrameDelta(128); + } + dirty = 0; }