What order data from actor are read
KeithQ
Member Posts: 25
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
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.
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
Thanks