Page 1 of 1

Support for Febucci's Text Animator For Unity

Posted: Sun Jan 26, 2025 3:28 am
by Jack_Development
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:

Code: Select all

using Febucci.UI;
Edited the AbstractTypewriter type to the Febucci type

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>();
            }
Finally, edited the OnFastForward to use the functions from TypewriterCore.cs

Code: Select all

            if ((typewriterEffect != null) && typewriterEffect.isShowingText)
            {
                typewriterEffect.SkipTypewriter();
            }
I hope anyone else who is looking to do the same can use this code too!

Re: Support for Febucci's Text Animator For Unity

Posted: Sun Jan 26, 2025 8:40 am
by Tony Li
Hi,

The Dialogue System has Text Animator integration. If you don't want to have to maintain your custom code below, you can use the scripts provided in the integration.