Last active
September 29, 2023 12:39
-
-
Save ghostofgamer/34bf2d7ca2263d2f8cf97494bcb9436d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[SerializeField] private Text _text; | |
private void Start() | |
{ | |
Sequence sequence = DOTween.Sequence(); | |
sequence.Append(_text.DOText("замена", 1f)); | |
sequence.AppendInterval(0.5f); | |
sequence.Append(_text.DOText(" дополнение", 3f)).SetRelative(); | |
sequence.AppendInterval(0.5f); | |
sequence.Append(_text.DOText(" шифр", 3f, true, ScrambleMode.All)); | |
sequence.Append(_text.DOText("замена", 1f)); | |
sequence.Append(_text.DOText(" дополнение", 3f)).SetRelative(); | |
sequence.Append(_text.DOText(" шифр", 3f, true, ScrambleMode.All)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment