Sequence During Choice

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
pegassy
Posts: 135
Joined: Sat Mar 17, 2018 8:07 pm

Sequence During Choice

Post by pegassy »

I am trying to show the player character while he is trying to make a choice using a sequence camera command. However, the choice menu is tied to a group, and in a group branch the sequence option is disabled. So it keeps showing the NPC that just spoke in the previous line instead of the player. If I change that last line to the player than I cannot display the NPC while he is speaking.

Is there a way to show the player during the choice screen?

Thank you.
User avatar
Tony Li
Posts: 22057
Joined: Thu Jul 18, 2013 1:27 pm

Re: Sequence During Choice

Post by Tony Li »

Hi,

You could set the NPC's Sequence to something like:

Code: Select all

Camera(Closeup);
Camera(Closeup,listener)@{{end}}
This does an immediate closeup of the speaker (the NPC).

At the duration specified by {{end}} (based on text length), it does a closeup of the listener (player).
Post Reply