omid3098 / CharTweener

Unity3D - DOTween extensions for tweening TextMeshPro characters

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CharTweener

Got DOTween? Got TextMeshPro?

Using CharTweener, you can do stuff like this... Example

Using code like this! (Full script here)

private void Start()
{
    // Set text
    var text = GetComponent<TMP_Text>();
    text.text = "DETERMINATION";

    var tweener = text.GetCharTweener();    
    for (var i = 0; i < tweener.CharacterCount; ++i)
    {
        // Move characters in a circle
        var circleTween = tweener.DOCircle(i, 0.05f, 0.5f)
            .SetEase(Ease.Linear)
            .SetLoops(-1, LoopType.Restart);

        // Oscillate character color between yellow and white
        var colorTween = tweener.DOColor(i, Color.yellow, 0.5f)
            .SetLoops(-1, LoopType.Yoyo);

        // Offset animations based on character index in string
        var timeOffset = Mathf.Lerp(0, 1, i / (float)(tweener.CharacterCount - 1));
        circleTween.fullPosition = timeOffset;
        colorTween.fullPosition = timeOffset;
    }
}

Features

  • Tween position, rotation, scale, and color. Includes the special transform extensions like DOPunch, DOShake
  • Controlled like normal tweens. Kill, SetDelay, SetLoops, etc. work. Sequences work.
  • If you tween a character at an index that doesn't exist, the tween still happens. For example, you could oscillate the first 100 characters of an empty input field and the animation will happen as the user types in characters.

Limitations

  • Performance overhead; my laptop dips below 60FPS when tweening 3000 characters.
  • Doesn't work with per-material properties such as Outline, Glow, Underlay.
  • Only works once Start is called; you cannot tween characters in the same frame that the TextMeshPro component is enabled for the first time!

Installation

  • Have DOTween and TextMeshPro installed in your project.
  • Get the .unitypackage from the latest release.
  • Open and import, uncheck the Examples folder if needed.
  • Go crazy!

Example

script

About

Unity3D - DOTween extensions for tweening TextMeshPro characters


Languages

Language:C# 100.0%