Notifications
Clear all

[Closed] Acessing travview curve out of range via maxscipt

I have looked through maxhelp but I can’t find a way of accessing
any of Out of Range parameters with maxscript

                                        My test scene is simple                     

                                        It is a point object linked to a parent dummy
                   The dummy has a Rotate (global all x,y,z) Noise Controller
                   I manually set out of range to Relative Repeat                     

                                        If I maxopclone the objects say 30 times, the out of range on
                   ROTATATION is not carried over, as I need this for ky_trail effects                     

                                        If someone could help me in figuring out how to globally set the
                   ROTATION track on Dummy01 to Dummy30 via maxscript I will bow to thee!                     

                                        Thanks
2 Replies

See the Controller Out-Of-Range Functions in the Maxscript Help.

-Eric

EDIT: So should be something like:

setBeforeORT $Dummy01.rotation.controller #realativerepeat
setAfterORT $Dummy01.rotation.controller #realativerepeat

Thanks I wrote this up and it works a charm


   
   FOO=$dummy* AS ARRAY
   FOR X=1 TO FOO.COUNT DO
   (
   doo=foo[x]
   setBeforeORT doo.rotation.controller #relativerepeat
   setAfterORT doo.rotation.controller #relativerepeat
   )