Order of sequences

What is the best way to create an order of sequences?

Example:
If two actors are talking, once they are done then a new action happens.

Is it all controlled by game attributes?

Comments

  • AJaymzAJaymz Member, PRO Posts: 164

    @GamingtilDawn create a Game Attribute Integer called Sequence.

    When game.Sequence is 1: do whatever, and when it's complete just change game.Sequence to game.Sequence+1. That will make it 2. So when game.Sequence is 2: do something else, and so on and so on.

  • GamingtilDawnGamingtilDawn Member Posts: 104

    Ok that is what I was thinking, thank you!

Sign In or Register to comment.