playOther method
Method used to play specific animation registred in others
Implementation
void playOther(String key) {
if (others.containsKey(key) == true) {
if (!runToTheEndFastAnimation) {
_fastAnimation = null;
}
_current = others[key];
_currentType = SimpleAnimationEnum.custom;
}
}