| 716 | } |
| 717 | |
| 718 | bool NpcAnimationHandler::doesAnimationExist(const std::string& animName) |
| 719 | { |
| 720 | Components::AnimHandler& h = getAnimHandler(); |
| 721 | Handle::AnimationHandle hanim = getAnimLib().getAnimation(h.getMeshLibName(), h.getOverlay(), animName); |
| 722 | |
| 723 | return hanim.isValid(); |
| 724 | } |
| 725 | |
| 726 | std::string NpcAnimationHandler::buildTransitionAnimationFromCurrentToGiven(const std::string& stateTo) |
| 727 | { |
nothing calls this directly
no test coverage detected