Announcement

Collapse
No announcement yet.

3ds max noise controller frequency

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

  • 3ds max noise controller frequency

    Does anybody know if its possible to change the max frequency limit of the 3ds max noise controller. I made a setup for a character where I linked a few parameters so I can easily animate the noise controller of certain parts of the body. Everything works fine but after everything was finished I noticed that I need the vibration to be faster but sadly the max frequency caps at 10. Is there any way around that to get a higher value?

    Hope somebody can help me.
    Cheers,
    Oliver

    https://www.artstation.com/mokiki

  • #2
    You could make your own noise controller with the mcg.
    Should be possibe, but you may need a few hours.
    German guy, sorry for my English.

    Comment


    • #3
      Since I never touched MCG it will probably take much longer :P
      As of now I have decided to kinda fake it with the velocity multiplier inside the vray object properties to generate a stronger motionblur just for those parts. It gives me a rendertime hit but it's the best thing I could so at the moment. Will probably give MCG a go over the weekend.
      Cheers,
      Oliver

      https://www.artstation.com/mokiki

      Comment


      • #4
        Originally posted by ralphr View Post
        As of now I have decided to kinda fake it with the velocity multiplier inside the vray object properties to generate a stronger motionblur just for those parts. It gives me a rendertime hit but it's the best thing I could so at the moment.
        Stacking a few noise controllers with different seed in a list contoller may be worth a try.

        Originally posted by ralphr View Post
        Will probably give MCG a go over the weekend.
        It's not as usefull as it should nor its as easy as it should for non programmers. And I think for programmers its propably too simplified.
        But from what I could say (I'm realy not a MCG hero) for some small things like simple custom controllers its pretty usefull.
        Download the sample packages, looking into those MCGs helps alot!
        Have fun
        German guy, sorry for my English.

        Comment


        • #5
          You can assign higher values via MAXScript. Not sure if the results are really a usable higher frequency, but the results change - so it is not limited to 10 automatically internally. Maybe worth a try.

          For example position controller of selected objects X-Axis has a Noise Float Controller assigned. To change it, select it and use MAXScript command:

          Code:
          $.pos.controller.X_Position.controller.frequency = 20
          or for a Noise Position controller

          Code:
          $.pos.controller.frequency = 20
          Daniel
          Daniel Schmidt - Developer of psd-manager

          Comment

          Working...