mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-07-04 15:27:30 +07:00
Temporary fix to movement animation speed -- doesn't take velocity into account
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user