Custom Animators
Animators simply need to be tables with at least the following functions.
local Animator = {}
function Animator.LoadAnimation(animation, name)
end
function Animator.PlayAnimation(name)
end
function Animator.StopAnimation(name)
end
function Animator.StopAnimations()
end
return Animator