jxlast/lua_probject/base_project/Core/TweenUtils.lua

13 lines
266 B
Lua

TweenUtils = {}
function TweenUtils.TweenFloat(from, to, duration, opupdate)
return DSTween.To(from,to,duration,opupdate)
end
function TweenUtils.OnComplete(tweener,callback)
tweener:OnComplete(callback)
end
function TweenUtils.Kill(tweener)
tweener:Stop()
end