23 lines
516 B
C#
23 lines
516 B
C#
|
|
using DG.Tweening;
|
||
|
|
|
||
|
|
namespace BingoBrain.HotFix
|
||
|
|
{
|
||
|
|
public static class Bsaddd
|
||
|
|
{
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|