Unity DoTween不受timeScale时间影响的解决办法

当我们游戏经常需要暂停的时候,又不想动画受到影响

使用SetUpdate方法
SetUpdate方法可以让目标忽略timeScale
示例脚本:

	self.__loginDoTween = CS_DOTween.Sequence()
    self.__loginDoTween:SetUpdate(true)

你可能感兴趣的:(游戏开发,游戏,unity,unity3d,timestamp)