ball 项目提交
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using DG.Tweening;
|
||||
|
||||
namespace BallKingdomCrush
|
||||
{
|
||||
public static class DOTweenHelper
|
||||
{
|
||||
public static void Init()
|
||||
{
|
||||
var doTweenInit = DOTween.Init();
|
||||
doTweenInit?.SetCapacity(1024, 1024);
|
||||
|
||||
DOTween.SetTweensCapacity(1024, 1024);
|
||||
|
||||
DOTween.defaultEaseType = Ease.Linear;
|
||||
|
||||
DOTween.defaultEaseOvershootOrAmplitude = 1.70158f;
|
||||
|
||||
DOTween.defaultEasePeriod = 0f;
|
||||
|
||||
DOTween.logBehaviour = LogBehaviour.Verbose;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user