I have three actors that each contribute data to a scene. Is there a way to set the order(1,2,3) in which these actors are read?
Comments
gyroscopeI am here.Member, Sous Chef, PROPosts: 6,598
edited February 2013
Hi @KeithQ Make an integer game or scene attribute, let's call it Order, set to 1.
In 1st actor's Rules:
When Order=1 -- or When mouse is down -- or touch is pressed -- or another att. trigger ----1st actor's data ---when finished Change Attribute Order to 2
In 2nd Actor's Rules:
When Order=2 --- or When mouse is down ----2nd actor's data ---when finished Change Attribute Order to 3
In 2nd Actor's Rules:
When Order=3 --- or When mouse is down ----3rd actor's data
Comments
Hi @KeithQ Make an integer game or scene attribute, let's call it Order, set to 1.
In 1st actor's Rules:
When Order=1 -- or When mouse is down -- or touch is pressed -- or another att. trigger
----1st actor's data
---when finished
Change Attribute Order to 2
In 2nd Actor's Rules:
When Order=2 --- or When mouse is down
----2nd actor's data
---when finished
Change Attribute Order to 3
In 2nd Actor's Rules:
When Order=3 --- or When mouse is down
----3rd actor's data
Hope that helps.
Thanks