Decavoid

Results 7 comments of Decavoid

> ... Why hasn't this been mentioned in the change logs?! In the docs, the minimum iOS version is even 8... https://github.com/facebook/facebook-ios-sdk/blob/main/CHANGELOG.md#1500 > The minimum supported version of iOS and...

> same issue, need fix ASAP If you need a fix ASAP, downgrade Xcode to 15.2. Another fix has already been mentioned.

> Hitting this consistently. It breaks my entire game (all tweens fail after the first error) > > ``` > DamageActor error: > System.IndexOutOfRangeException: Index was outside the bounds of...

> "Some objects were not cleaned up..." [DOTween]. This means that somewhere in your code you attempt to start a tween in `OnDestroy()` (maybe indirectly) of some GameObject. Don't start...

Show code that calls `DOLocalMoveY`. NaN is usually produced when you divide any number by 0.

This code reproduces the bug using only 2 sequence objects. Add this script on an empty GameObject. ``` using System; using System.Collections; using DG.Tweening; using UnityEngine; public class Test :...

I made a PR https://github.com/Demigiant/dotween/pull/99 that fixesIndexOutOfRangeException exception reproducible by the test case above.