useTypewriterEffect
Last updated
Was this helpful?
Field in LineView
Controls whether the text of lineText should be gradually revealed over time.
public bool useTypewriterEffect = false;If this value is true, the lineText object's TMPro.TMP_Text.maxVisibleCharacters property will animate from 0 to the length of the text, at a rate of typewriterEffectSpeed letters per second when the line appears. onCharacterTyped is called for every new character that is revealed.
If this value is false, the lineText will all be revealed at the same time.
If useFadeEffect is true, the typewriter effect will run after the fade-in is complete.
LineView.lineText: The TMPro.TextMeshProUGUI object that displays the text of dialogue lines.
LineView.onCharacterTyped: A Unity Event that is called each time a character is revealed during a typewriter effect.
LineView.typewriterEffectSpeed: The number of characters per second that should appear during a typewriter effect.
Last updated
Was this helpful?
Was this helpful?
