Forum rules - please read before posting.

Keep subtitle ui on between speeches

Hi,
as title I would avoid the subtitle menu to turn on and off between 2 action speech if they are consecutives.
At the moment the menu "flicks" between them.

thanks in advance.

Comments

  • What is your AC version, and can you share a screenshot your Subtitles Menu's properties?

    If Duplicate for each line? is checked, see if unchecking it makes a difference.

  • version 1.85

  • I'll attempt a recreation. What are your Subtitle settings at the top of the Speech Manager?

  • edited February 4

    Thanks. I will look to address this as part of v1.85.6.

  • Please do you have a quick solution? We have few time to close the project.

  • Try this: open up AC's Menu.cs script and look for this line:

    canvasGroup.alpha = 1f - GetFadeProgress ();
    

    Replace with:

    var progress = GetFadeProgress();
    progress = (progress - 0.02f) / (1f - 0.02f);
    canvasGroup.alpha = 1f - progress;
    
  • Thank you now is perfect!

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.