Andreychuk Karim

Results 1 comments of Andreychuk Karim

this is my workaround ``` public static async UniTask ToUniTaskWithImmediateCancel(this Tween tween, CancellationToken token) { await using var _ = token.Register(() => { if (tween.IsActive()) { tween.Kill(); } }, true);...