Slide/move a character and fade them out without stopping?

Posted: 02 Jun 2021 07:41
by Stellar

Is it possible to slide or move a character from point A to point B and then fade them out without stopping?

Something like this...

@slide Sheba from:15,50 to:85,0 time:5 (and then transition:CrossFade) wait:false

Thanks!


Re: Slide/move a character and fade them out without stopping?

Posted: 02 Jun 2021 08:29
by idaot

Hi, it's possible to fade out a sliding character by using two commands concurrently (by adding wait:false to the first command)

This should work:

@slide Sheba from:15,50 to:85,0 time:5 wait:false
@hide Sheba time:5


Re: Slide/move a character and fade them out without stopping?

Posted: 02 Jun 2021 11:34
by Stellar

Hi idaot,

When I try your example, what happens is, Sheba fades out over the entire course of 5 seconds WHILE moving. I need her to fade out after the move is complete. And without stopping the dialogue.

Thanks!


Re: Slide/move a character and fade them out without stopping?

Posted: 03 Jun 2021 08:35
by idaot

Ah, apologies.

Something like this perhaps?

@slide Sheba from:15,50 to:85,0 time:5 wait:false
Sheba: Hello [wait 5][hide Sheba]


Re: Slide/move a character and fade them out without stopping?

Posted: 07 Jun 2021 13:57
by Stellar

Hmm, thanks but not that either.

So the idea is.... Sheba starts sliding. She finishes sliding in 10 seconds. But during those 10 seconds the dialogue can keep going, and just keep going. Is that more clear?


Re: Slide/move a character and fade them out without stopping?

Posted: 07 Jun 2021 19:35
by idaot

Try adding skipInput to the mix:
https://naninovel.com/api/#skipinput