What order data from actor are read

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

  • gyroscopegyroscope I am here.Member, Sous Chef, PRO Posts: 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

    Hope that helps.

    ""You are in a maze of twisty passages, all alike." - Zork        temp domain http://spidergriffin.wix.com/alphaghostapps

  • KeithQKeithQ Member Posts: 25
    Works great, I used a Boolean variation of it. I have one actor that carries the constants for the scene, it needs to be read first and only once.

    Thanks
Sign In or Register to comment.