Order of sequences
GamingtilDawn
Member Posts: 104
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
@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.
Ok that is what I was thinking, thank you!