Support for Febucci's Text Animator For Unity
Posted: Sun Jan 26, 2025 3:28 am
Hello everyone!
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:
Edited the AbstractTypewriter type to the Febucci type
}
Edited the Awake check to look for the new type instead:
Finally, edited the OnFastForward to use the functions from TypewriterCore.cs
I hope anyone else who is looking to do the same can use this code too!
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();
}