Hi and a happy new year! I am using "Sequences" to implement short battle sequences, like in an RPG battle, using the Dialogue System. This works rather well, but now I am in a situation where the sequence should pause halfway through, wait for player input, and only then it should continue. I can see there are some mechanisms in place for that, but I could find none that work out of the box when you use the @seconds syntax. To give an example, this is my sequence:
Code: Select all
CinemachinePriority(Battle Camera);
AnimatorPlay(1H@CombatIdle01);
MoveTo(Battle Position 1)@1;
LookAt(listener)@1;
AnimatorPlayWait(Cast Spell, listener)@3.5->Message(Anim1Done);
AnimatorPlay(Idle, listener)@Message(Anim1Done);
MoveTo(Battle Position 2, speaker, 0.5)@5;
AnimatorPlay(1H@Sprint01)@5;
AnimatorPlayWait(RightHand@Attack03)@5.5->Message(Anim2Done);
DealDamage(5)@5.75;
AnimatorPlayWait(BasicMotions@Jump01)@7->Message(Anim3Done);
MoveTo(Battle Position 1, speaker, 0.5)@7.1;
AnimatorPlay(1H@CombatIdle01)@Message(Anim3Done);
CinemachinePriority(Battle Camera, 0)@10;
Let's say on the "
DealDamage" command, I need to wait for additional input from the player, like rolling a dice, and I don't know how long that will take. Even if I sent a message like "AttackFinished" and wait for it, from that point onwards, all subsequent @seconds would be off. I can see a couple of ways to address this, like using a Custom Time Mode or disabling IsPlaying, but I don't know which side effects this causes and if I am perhaps missing a really easy intended solution. As an additional remark, I can only use a single sequence, as I am calling it directly using PlaySequence, so a surrounding conversation does not exist. What should I do here? Any advice is appreciated, thanks!