Announcement

Collapse
No announcement yet.

vray prox animation offset random seed

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • vray prox animation offset random seed

    I've added a script controller to anim-offset and added the script: Random 1 60 to create a random value between 1 & 60. This does not create a single random seed value but instead alters the offset over time. Is there a way to do this ?

    This setup is used for a water fountain created in Phoenix with about 150 frames in total. I just need a random offset for each one calculated by script as there are a lot of them.
    Regards

    Steve

    My Portfolio

  • #2
    Never mind I ended up using a script once all the fountains had been create:

    Code:
    for i in selection do
    (
    i.anim_offset = random 1 60
    )
    Regards

    Steve

    My Portfolio

    Comment

    Working...
    X