<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Populating Custom Camera parameters in the Attribute Editor in Arnold General Rendering Forum</title>
    <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047323#M1742</link>
    <description>&lt;P&gt;You need an Attribute Editor template.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/zpelgrims/zoic/tree/master/maya/ae" target="test_blank"&gt;https://github.com/zpelgrims/zoic/tree/master/maya/ae&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2019 19:51:59 GMT</pubDate>
    <dc:creator>Stephen.Blair</dc:creator>
    <dc:date>2019-11-08T19:51:59Z</dc:date>
    <item>
      <title>Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047322#M1741</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;In the Arnold section of a camera's attribute editor, when you pick some of the integrated Arnold camera types, you'll see the Arnold parameters for that camera node appear beneath them.&lt;/P&gt;&lt;P&gt;I've registered my parameters in the node and have also done the metadata calls in code, but they don't appear there. This leads me to believe there is some other mechanism required to make them appear. I've looking in the mtoa translator structure, but there isn't anything immediately obvious in there as the place to do it.&lt;/P&gt;&lt;P&gt;Any chance somebody knows the intended workflow to expose custom camera parameters to the UI in maya?&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Alan.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 01:16:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047322#M1741</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-08T01:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047323#M1742</link>
      <description>&lt;P&gt;You need an Attribute Editor template.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/zpelgrims/zoic/tree/master/maya/ae" target="test_blank"&gt;https://github.com/zpelgrims/zoic/tree/master/maya/ae&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 19:51:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047323#M1742</guid>
      <dc:creator>Stephen.Blair</dc:creator>
      <dc:date>2019-11-08T19:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047324#M1743</link>
      <description>&lt;P&gt;However Stephen, I have a problem myself, whatever name I use in the node loader (multiple classes in a single lib) it's not seen by the translator that is looking for the library name as the maya node camera.&lt;/P&gt;&lt;P&gt;For example my camera is romboCamera (set as both maya.name and maya.translator, it doesn't matter I do it in the C++ node_parameters section or in a .mtd file) ... when I register its AEtemplate with :&lt;/P&gt;&lt;PRE&gt;templates.registerTranslatorUI(AEromboCameraTemplate, "camera", "romboCamera")&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;at startup I get this warning ::&lt;/P&gt;&lt;PRE&gt;# Warning: [mtoa] Registering UI for unknown translator "romboCamera" for Maya node camera. Valid choices are: "libRomboArnold", "perspective", "spherical", "vr_camera", "&amp;lt;built-in&amp;gt;", "orthographic", "fisheye", "cylindrical" #&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;you see as 'valid choice' I have 'libRomboArnold' .. but that has never been registered anywhere, it's just the name of the linked library, libRomboArnold.so. Now if I match the registration name in the AETemplate with the one of the library.. it actually works and all the params are there and working correctly.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2019 19:41:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047324#M1743</guid>
      <dc:creator>maxtarpini</dc:creator>
      <dc:date>2019-11-10T19:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047325#M1744</link>
      <description>&lt;P&gt;When you call RegisterTranslator() is the second argument an empty string? &lt;/P&gt;&lt;P&gt;Then MtoA uses the library name (libRomboArnold in this case) as the translator name.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 21:28:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047325#M1744</guid>
      <dc:creator>Stephen.Blair</dc:creator>
      <dc:date>2019-11-11T21:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047326#M1745</link>
      <description>&lt;P&gt;Apparently, it does call the library name also if there's a mismatch between 2nd arg (registerTranslatorUI() ) and maya.name where they should be both 'camera'. I was using the camera name there (romboCamera) and not 'camera'. Now everything is working cool. Thanks a bunch ! &lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 13:32:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047326#M1745</guid>
      <dc:creator>maxtarpini</dc:creator>
      <dc:date>2019-11-12T13:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047327#M1746</link>
      <description>&lt;P&gt;There's no documentation for the AE templates, but there's a lot of examples for the MtoA nodes:&lt;/P&gt;&lt;P&gt;S:\solidangle\mtoadeploy\2019-3.3.0.2\scripts\mtoa\ui\ae&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 15:52:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047327#M1746</guid>
      <dc:creator>Stephen.Blair</dc:creator>
      <dc:date>2019-11-12T15:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047328#M1747</link>
      <description>&lt;P&gt;Thanks, Stephen, I'll give this a try.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 19:49:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047328#M1747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-14T19:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Custom Camera parameters in the Attribute Editor</title>
      <link>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047329#M1748</link>
      <description>&lt;P&gt;None of this works with a custom translator.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 18:47:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/arnold-general-rendering-forum/populating-custom-camera-parameters-in-the-attribute-editor/m-p/11047329#M1748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-16T18:47:34Z</dc:date>
    </item>
  </channel>
</rss>

