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

All about user interface, be it customizing built-in UIs or adding new ones.
Post Reply
Stellar
Posts: 32
Joined: 30 Mar 2021 10:58

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

Post 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!

idaot
support
Posts: 262
Joined: 01 Aug 2020 08:25

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

Post 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

Stellar
Posts: 32
Joined: 30 Mar 2021 10:58

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

Post 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!

idaot
support
Posts: 262
Joined: 01 Aug 2020 08:25

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

Post 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]

Stellar
Posts: 32
Joined: 30 Mar 2021 10:58

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

Post 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?

idaot
support
Posts: 262
Joined: 01 Aug 2020 08:25

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

Post by idaot »

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

Post Reply