Page 1 of 1

I want to use multiple Portraits.

Posted: Sun Dec 03, 2017 11:45 pm
by minomod
During the conversation, alternating between the first and second portraits of the main character
I want to use it.

Re: I want to use multiple Portraits.

Posted: Mon Dec 04, 2017 8:04 am
by Tony Li
Hi,

To use portrait 2 for a single dialogue entry node, use the [pic=#] tag. For example:
  • Dialogue Text: "I'm very angry! [pic=2]"
To permanently switch to portrait 2, use the SetPortrait() sequencer command:
  • Dialogue Text: "I'm going to stay angry until you apologize!"
    Sequence: SetPortrait(speaker,pic=2); {{default}}
(I added {{default}} to tell the sequence to also use the Dialogue Manager's Default Sequence.)

Re: I want to use multiple Portraits.

Posted: Mon Dec 04, 2017 10:12 am
by minomod
Thanks, I solved the problem.