Render Setting name
-
On 09/01/2018 at 03:52, xxxxxxxx wrote:
_<_t_>_
We can get the details of any render setting using this:
rd = documents.GetActiveDocument().GetActiveRenderData().GetData()But I could not find any property for getting the render setting name from this render data (rd). How can we get the name?
I looked into the properties listed here:
https://developers.maxon.net/docs/py/2023_2/modules/c4d.documents/RenderData/index.htmlThanks.
<_<_t_>_
-
On 10/01/2018 at 00:05, xxxxxxxx wrote:
documents.GetActiveDocument().GetActiveRenderData().GetName()
-
On 10/01/2018 at 04:20, xxxxxxxx wrote:
Hi,
GetName() function is declared in BaseList2D class.
RenderData inherits BaseList2D, which inherits GeListNode, which inherits C4DAtom. So the methods of all these classes can be called on a RenderData object.
BaseList2D, GeListNode and C4DAtom are the base classes for many others in Cinema 4D API. These provide the basic operations for most elements in Cinema.