MagicTween icon indicating copy to clipboard operation
MagicTween copied to clipboard

GetCharCount at TMPTweenAnimator.cs sometimes crashes.

Open soarcreator opened this issue 1 year ago • 0 comments

When it crashes, textInfo returns null. Therefore, I changed it like below, and seems working fine.

public int GetCharCount() { var info = tmpText.textInfo; return info == null ? 0 : math.min(info.characterCount, info.characterInfo.Length); }

soarcreator avatar Nov 08 '23 07:11 soarcreator