This topic contains 7 replies, has 3 voices, and was last updated by  CodersExpo 1 year, 8 months ago.

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #26106

    kilik
    Participant

    i when i push sequencer timer i get random take the priority and timer look not starting

    http://puu.sh/93NMk.jpg

    #26108

    CodersExpo
    Participant

    I’m sorry I’m not clear on the issue. Can you provide a little more detail on what your attempting to do and what you’re experiencing? Maybe I can help.

    #26110

    kilik
    Participant

    i look for use timer for change variable or action for make variation of ia
    exemple use random every 5 sec change attaque type like one or two

    #26153

    kilik
    Participant

    i have try set variable but he don’t look take it

    another exemple

    change variable to random value every one seconde

    • This reply was modified 1 year, 8 months ago by  kilik.
    #26155

    lordofduct
    Participant

    I’m not sure what you’re asking.

    But I’m going to point out that the timer and random are running in parallel. This means the timer isn’t blocking the generation of randoms.

    #26231

    CodersExpo
    Participant

    lordofduct is correct, if you are trying to choose a random expression every second, don’t run the Random and Timer nodes in Parallel. Try

    SEQ
    -timer Seconds 2 return success
    -RAN repeat never (NOT FOREVER)
    —-expression debug(“One”) return success
    —-expression debug(“Two”) return success

    • This reply was modified 1 year, 8 months ago by  CodersExpo.
    #26280

    kilik
    Participant

    look not working value continue to change everyframe

    other question about this method can be usefull
    to get yield on end of animation it’s possible to do it

    #26382

    CodersExpo
    Participant

    Use a Sequence NOT a Parallel for the root node.

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.