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!
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!
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
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!
Ah, apologies.
Something like this perhaps?
@slide Sheba from:15,50 to:85,0 time:5 wait:false
Sheba: Hello [wait 5][hide Sheba]
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?
Try adding skipInput to the mix:
https://naninovel.com/api/#skipinput