Starting in December, we will archive content from the community that is 10 years and older. This FAQ provides more information.
Hi,
Please go through the following python documentation for render setup?
http://help.autodesk.com/view/MAYAUL/2017/ENU//?guid=GUID-FFC3298A-9803-4EAF-B472-D13247319EB0
In the bottom of the documentation if you look at it closely, you will find some example for "help".
import maya.app.renderSetup.model.renderLayer as renderLayer
help(renderLayer)
import maya.app.renderSetup.model.renderSetup as renderSetup
help(renderSetup)
You will get the full documentation for a particular module, if you do "help(module_name)" in the script editor.
Hope that helps.
Thanks,
Vijaya Prakash.
Indeed I missed that! Would have expected to find this kind of information somewhere in the Technical or Development sections of the help.
Also I am not a programmer. I am not used to APIs. To use the "help()" function was not apparent to me.
Thank you.