I was just using the Dialogue System for Unity, and wanted to implement Febucci's Text Animations for Unity into my project, but as it uses a different typewriter effect, I was unable to get the desired effect.
These are the changes I did to fix my problem!
Within StandardUIContinueButtonFastForward.cs
Added:
Code: Select all
using Febucci.UI;
Code: Select all
[Tooltip("Typewriter effect to fast forward if it's not done playing.")]
public TypewriterByCharacter typewriterEffect;
Edited the Awake check to look for the new type instead:
Code: Select all
if (typewriterEffect == null)
{
typewriterEffect = GetComponentInChildren<TypewriterByCharacter>();
}
Code: Select all
if ((typewriterEffect != null) && typewriterEffect.isShowingText)
{
typewriterEffect.SkipTypewriter();
}