I’m totally new so this is a pretty newb question but is there a way to see if an animation is playing using lua? I want my script to check if the animation for the inputed direction is playing and if it is to not play a new one.
Or if there’s a easier way to do direction changes I would love to know.
I’m thinking something like
onInput {
if (is running) {
do nothing
}
else {
start animation for direction
}
}