Support for Febucci's Text Animator For Unity

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
User avatar
Jack_Development
Posts: 7
Joined: Fri Aug 16, 2024 9:27 am

Support for Febucci's Text Animator For Unity

Post 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!
User avatar
Tony Li
Posts: 22893
Joined: Thu Jul 18, 2013 1:27 pm

Re: Support for Febucci's Text Animator For Unity

Post 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.
Post Reply