Howdy,
so I'm now in the process of testing this on other sequence commands, but whenever I use the CinemachinePriority command, it automatically ends the typewriter effects and moves to the next node. Is that normal behaviour?
CinemachinePriority Sequence Command acts like Continue()
Re: CinemachinePriority Sequence Command acts like Continue()
Hi,
Add a Delay command or {{default}} keyword, such as:
The {{default}} keyword represents the value of the Dialogue Manager's Camera Settings > Default Sequence field.
Subtitles only stay onscreen as long as the dialogue entry's Sequence lasts. The CinemachinePriority() sequencer command ends immediately. By adding something like {{default}} or Delay({{end}}), you can make the Sequence last a duration that allows the typewriter to finish.
Add a Delay command or {{default}} keyword, such as:
Code: Select all
CinemachinePriority(someCam);
{{default}}
Subtitles only stay onscreen as long as the dialogue entry's Sequence lasts. The CinemachinePriority() sequencer command ends immediately. By adding something like {{default}} or Delay({{end}}), you can make the Sequence last a duration that allows the typewriter to finish.