<?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: Bifrost Commands Documentation : Examples not working ? in Bifrost Forum</title>
    <link>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11928583#M1077</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/219084"&gt;@sim.on&lt;/a&gt;&amp;nbsp;Thank you for reporting this. I have logged an improvement to update the examples.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Apr 2023 14:29:35 GMT</pubDate>
    <dc:creator>maxime_jeanmougin</dc:creator>
    <dc:date>2023-04-28T14:29:35Z</dc:date>
    <item>
      <title>Bifrost Commands Documentation : Examples not working ?</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11919745#M1074</link>
      <description>&lt;P&gt;Hi ,&lt;BR /&gt;i am currently trying to do some Bifrost-Scripting.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1. while checking out the Bifrost-Commands-Documentation&lt;BR /&gt;&lt;A href="https://help.autodesk.com/cloudhelp/ENU/Bifrost-Tech-Docs/CommandsPython/cat_VNN.html" target="_blank"&gt;https://help.autodesk.com/cloudhelp/ENU/Bifrost-Tech-Docs/CommandsPython/cat_VNN.html&lt;/A&gt;&lt;BR /&gt;i found out , some of the Examples ( at the Bottom of the command-documentations ) are not working properly&lt;BR /&gt;e.g. vnnCompound and vnnNode-examples&lt;BR /&gt;&lt;BR /&gt;2. additionally in Maya2024 , when trying to access the "Nodes-Reference" ( "help / Maya Scripting Reference / Node and Attribute Reference" ) - there seems to be a broken link , the expected website with Node-Reference does not show up .&lt;BR /&gt;&lt;BR /&gt;thanx in advance for your support &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 08:30:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11919745#M1074</guid>
      <dc:creator>sim.on</dc:creator>
      <dc:date>2023-04-25T08:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Bifrost Commands Documentation : Examples not working ?</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11928269#M1075</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/219084"&gt;@sim.on&lt;/a&gt;&amp;nbsp;, could you tell us which command flags you could not make working?&lt;BR /&gt;&lt;BR /&gt;I could not find the category you are searching for in the latest documentation. If this is related to Maya, you should consider asking help on the Maya forum. As for the Bifrost doc, you can read it &lt;A href="https://help.autodesk.com/view/BIFROST/ENU/" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 12:53:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11928269#M1075</guid>
      <dc:creator>maxime_jeanmougin</dc:creator>
      <dc:date>2023-04-28T12:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Bifrost Commands Documentation : Examples not working ?</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11928502#M1076</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13406737"&gt;@maxime_jeanmougin&lt;/a&gt; , thanx for your feedback .&lt;BR /&gt;&lt;BR /&gt;well , in the command-doc for vnnCompound , for instance , it starts with&lt;/P&gt;&lt;PRE&gt;mel.eval("createNewBifrostGraphCmd()")

cmds.vnnCompound("bifrostGraph1", "/", create="liquid")&lt;/PRE&gt;&lt;P&gt;where "bifrostGraph1" should probably be renamed to "bifrostGraphShape1" in all the examples in order to work.&lt;BR /&gt;&lt;BR /&gt;later in the same vnnCompund-example-code it is written&lt;/P&gt;&lt;PRE&gt;# Rename a node
cmds.vnnCompound("bifrostGraph1", "/liquid", renameNode=("add", "plus"))

# Remove the node
cmds.vnnCompound("bifrostGraph1", "/liquid", addNode="BifrostGraph,Core::Math,plus")
cmds.vnnCompound("bifrostGraph1", "/liquid", removeNode="plus")&lt;/PRE&gt;&lt;P&gt;where the second line including ... Core::Math,plus ....&lt;BR /&gt;is probably unneccessary , since the add node has been created before and renamed&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;and in the end , the last line (&amp;nbsp;resetToFactory="liquid")&lt;BR /&gt;does not work for me either&lt;BR /&gt;----------------------------------------&lt;BR /&gt;&lt;BR /&gt;the vnnNode-documentation example starts with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;import maya.cmds as cmds
import maya.mel as mel

cmds.file(new=1, f=1)
mel.eval("createNewBifrostGraphCmd()")

cmds.vnnCompound("bifrostGraph1", "/", addNode="BifrostGraph,Simulation::Aero,combustion_settings")&lt;/PRE&gt;&lt;P&gt;after changing "bifrostGraph1" to "bifrostGraphShape1" again , the vnnCompund-addNode-example throws directly an error , when trying to create "Simulation::Aero,combustion_settings"&lt;BR /&gt;&lt;BR /&gt;when i change "Simulation::Aero,combustion_settings" to "Simulation::Aero,aero_combustion_settings"&lt;/P&gt;&lt;P&gt;again , this line is working , but i need to apply changes to the next line again .&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;"/combustion_settings/set_property__enable_combustion" needs to become&lt;BR /&gt;"/aero_combustion_settings/iterate_set_properties/set_property__enable_combustion"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;and so on .&lt;BR /&gt;----------------------&lt;BR /&gt;maybe the examples where created for a previous bifrost-version , and have not been updated since then ?&lt;BR /&gt;&lt;BR /&gt;ok , but now i realize , this is INDEED quite a good learning approach for me , trying to get the example to work &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;have a nice weekend&lt;BR /&gt;sim.On&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 14:02:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11928502#M1076</guid>
      <dc:creator>sim.on</dc:creator>
      <dc:date>2023-04-28T14:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Bifrost Commands Documentation : Examples not working ?</title>
      <link>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11928583#M1077</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/219084"&gt;@sim.on&lt;/a&gt;&amp;nbsp;Thank you for reporting this. I have logged an improvement to update the examples.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 14:29:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/bifrost-forum/bifrost-commands-documentation-examples-not-working/m-p/11928583#M1077</guid>
      <dc:creator>maxime_jeanmougin</dc:creator>
      <dc:date>2023-04-28T14:29:35Z</dc:date>
    </item>
  </channel>
</rss>

