Skip to main content
Inspiring
October 16, 2018
Answered

Need help with randomizing rotation for multiple objects

  • October 16, 2018
  • 1 reply
  • 5202 views

I am trying to have two logos rotate randomly independent of each other but they follow the exact same motions.  IE I want one logo to spin its own way while the other spins its own way.  Right now they do the exact same thing.  Here is a picture if it helps. 

    This topic has been closed for replies.
    Correct answer Dan Ebberts

    Play around with this:

    seedRandom(index,true);

    time*random(360)

    Dan

    1 reply

    Community Expert
    October 16, 2018

    You need to add a different random seed for each random number generator. You can easily figure out how to do that if you spend five minutes in the expression language guide you will find by typing “random expression” in the search help field at the top right corner of AE.

    Inspiring
    October 16, 2018

    I tried seedRandom but it didn't make any difference. 

    Dan Ebberts
    Community Expert
    Dan EbbertsCommunity ExpertCorrect answer
    Community Expert
    October 16, 2018

    Play around with this:

    seedRandom(index,true);

    time*random(360)

    Dan