Announcement

Collapse
No announcement yet.

determining current image output type?

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

  • determining current image output type?

    I'm wondering if there is a MEL or Python command to determine what the render image format is currently set to (EXR, PNG, etc). I need to access this for a script. thx
    Dave Girard

  • #2
    Originally posted by BEIGE View Post
    I'm wondering if there is a MEL or Python command to determine what the render image format is currently set to (EXR, PNG, etc). I need to access this for a script. thx
    getAttr "vraySettings.imageFormatStr";

    www.deex.info

    Comment


    • #3
      thanks - I knew it had to be something easy. Is there documentation for accessing these V-Ray attributes?
      Dave Girard

      Comment


      • #4
        Just get attributes on vraySettings node.
        Select the vraySettings node and you will see all attributes.
        www.deex.info

        Comment


        • #5
          ok - thanks
          Dave Girard

          Comment

          Working...