<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Export RSproxy with Python]]></title><description><![CDATA[<p dir="auto">Hello,<br />
is there any documentation or examples about how to export selected objects as rsproxies?<br />
Specifically I'm looking for the format, which need to be used in the c4d.documents.SaveDocument function.</p>
<p dir="auto">Thanks</p>
]]></description><link>http://developers.maxon.net/forum//topic/15632/export-rsproxy-with-python</link><generator>RSS for Node</generator><lastBuildDate>Mon, 09 Mar 2026 05:25:55 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum//topic/15632.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 07 Aug 2024 05:26:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Export RSproxy with Python on Thu, 08 Aug 2024 01:46:46 GMT]]></title><description><![CDATA[<p dir="auto">Great, thank you both very much. That helped a lot and I got the export working!</p>
]]></description><link>http://developers.maxon.net/forum//post/74720</link><guid isPermaLink="true">http://developers.maxon.net/forum//post/74720</guid><dc:creator><![CDATA[Richard-Prism]]></dc:creator><pubDate>Thu, 08 Aug 2024 01:46:46 GMT</pubDate></item><item><title><![CDATA[Reply to Export RSproxy with Python on Wed, 07 Aug 2024 15:32:13 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/richard-prism">@<bdi>Richard-Prism</bdi></a>,</p>
<p dir="auto">Welcome to the Maxon developers forum and its community, it is great to have you with us!</p>
<h4>Getting Started</h4>
<p dir="auto">Before creating your next postings, we would recommend making yourself accustomed with our forum and support procedures. You did not do anything wrong, we point all new users to these rules.</p>
<ul>
<li><a href="/forum/topic/15242/">Forum Overview</a>: Provides a broad overview of the fundamental structure and rules of this forum, such as the purpose of the different sub-forums or the fact that we will ban users who engage in hate speech or harassment.</li>
<li><a href="/forum/topic/15244/">Support Procedures</a>: Provides a more in detail overview of how we provide technical support for APIs here. This topic will tell you how to ask good questions and limits of our technical support.</li>
<li><a href="/forum/topic/15243/">Forum Features</a>: Provides an overview of the technical features of this forum, such as Markdown markup or file uploads.</li>
</ul>
<p dir="auto">It is <strong>strongly</strong> recommended to read the first two topics carefully, especially the section <a href="/forum/topic/15244/">Support Procedures: Asking Questions</a>.</p>
<h4>About your First Question</h4>
<p dir="auto">For the example usage of the <a href="https://developers.maxon.net/docs/py/2024_5_0/modules/c4d.documents/index.html?highlight=savedocument#documents.SaveDocument" target="_blank" rel="noopener noreferrer nofollow ugc">SaveDocument</a> function you can check one of our examples in the github repo, e.g. <a href="https://github.com/PluginCafe/cinema4d_py_sdk_extended/blob/a2bf564a32b130be264e3fee396d12ee49b37ff9/scripts/03_application_development/files_media/export_alembic_r14.py" target="_blank" rel="noopener noreferrer nofollow ugc">Export Alembic example</a>.</p>
<p dir="auto">Regarding the RS Proxy exporter, it is available only if you have redshift enabled in you cinema 4d. Hence, you won't be able to find its ID in the C4D documentation. However, you can always use Script Log (Extensions -&gt; Script Log) to track down the ID of the RS Proxy exporter.<br />
<img src="/forum/assets/uploads/files/1723044549639-ff8ee65e-4fdf-4245-b23e-f47a7bff7f88-image.png" alt="ff8ee65e-4fdf-4245-b23e-f47a7bff7f88-image.png" class=" img-fluid img-markdown" /><br />
Then just make an ordinary RS Proxy export and you'll see the ID in the script log:<br />
<img src="/forum/assets/uploads/files/1723044594719-99a32704-8a66-4592-a420-7b6220d2d248-image.png" alt="99a32704-8a66-4592-a420-7b6220d2d248-image.png" class=" img-fluid img-markdown" />.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/dunhou">@<bdi>Dunhou</bdi></a>, thank you for actively participating in our discussions and offering and alternative solution!</p>
<p dir="auto">Cheers,<br />
Ilia</p>
]]></description><link>http://developers.maxon.net/forum//post/74717</link><guid isPermaLink="true">http://developers.maxon.net/forum//post/74717</guid><dc:creator><![CDATA[i_mazlov]]></dc:creator><pubDate>Wed, 07 Aug 2024 15:32:13 GMT</pubDate></item><item><title><![CDATA[Reply to Export RSproxy with Python on Wed, 07 Aug 2024 14:04:48 GMT]]></title><description><![CDATA[<p dir="auto">Hey <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/richard-prism">@<bdi>Richard-Prism</bdi></a> ,</p>
<p dir="auto">You can check the my custom library Renderer.Redshift.Scene on Github <a href="https://github.com/DunHouGo/renderEngine/blob/main/Redshift/redshift_helper.py#L2077" target="_blank" rel="noopener noreferrer nofollow ugc">here</a> , witch also can visit from <a href="https://developers.maxon.net/forum/category/4" target="_blank" rel="noopener noreferrer nofollow ugc">General Talk</a>, and modify the codes, or just use this if match what you need.</p>
<p dir="auto">Nothing special here.</p>
<p dir="auto">Cheers~<br />
DunHou</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1723035926775-3af99fde-7feb-4952-a3fe-9383b72a96ce-image.png" alt="3af99fde-7feb-4952-a3fe-9383b72a96ce-image.png" class=" img-fluid img-markdown" /></p>
<pre><code class="language-python">import c4d
from Renderer import Redshift

def main():

    scene_helper = Redshift.Scene(doc)
    scene_helper.auto_proxy(node=op, remove_objects=False)
    
if __name__ == '__main__':
    main()
</code></pre>
]]></description><link>http://developers.maxon.net/forum//post/74715</link><guid isPermaLink="true">http://developers.maxon.net/forum//post/74715</guid><dc:creator><![CDATA[Dunhou]]></dc:creator><pubDate>Wed, 07 Aug 2024 14:04:48 GMT</pubDate></item></channel></rss>