Announcement

Collapse
No announcement yet.

VRay properties

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

  • VRay properties

    hi all,
    i wish that i could save/load settings in vray properties.

    best regards
    Jonas
    Jonas

    www.jonas-balzer.de
    www.shack.de

  • #2
    Hi,

    the vrayproperties are implemented as max custom properties. This means you have easy acces with maxscript like this:

    setUserProp $Plane01 "VRay_Matte_Enable" false

    You can easily set up a script to do what you want.

    Best regards,

    Dieter
    --------
    visit my developer blog

    Comment


    • #3
      Originally posted by dimo
      You can easily set up a script to do what you want.
      thanks man. but maxscript + me =
      but would find it very useful, have a job at the moment where i have to switch alot.
      Jonas

      www.jonas-balzer.de
      www.shack.de

      Comment


      • #4
        they are saved as object properties in the max's built in SceneStates
        Dave Buchhofer. // Vsaiwrk

        Comment


        • #5
          probably not exacltly what you need, but i use this one a lot to copy paste user properties

          Code:
          macroScript CopyUserProperties
          	category:"sushidelictools"
          		toolTip:"CopyUserProperties"
          (
          	global thesearemyuserprops
          	try (thesearemyuserprops = getuserpropbuffer $)
          	catch(messagebox "Copying UserProperties failed")
          )
          and to paste back

          Code:
          macroScript PasteUserProperties
          	category:"sushidelictools"
          	toolTip:"PasteUserProperties"
          (	
          	global thesearemyuserprops
          	try (setuserpropbuffer $ thesearemyuserprops)
          	catch(messagebox "Unable to paste UserProperties")
          )
          to copy, only one object must be selectetd, but you can paste it back to multiple objects.

          regards,
          michael
          This signature is only a temporary solution

          Comment


          • #6
            great, will try that monday when back in office.

            thanks man!!
            Jonas

            www.jonas-balzer.de
            www.shack.de

            Comment


            • #7
              yeah. im like you. max script looks like ancient dead languages to me.

              ---------------------------------------------------
              MSN addresses are not for newbies or warez users to contact the pros and bug them with
              stupid questions the forum can answer.

              Comment

              Working...
              X