I used a script with Maya 2020.4 and Phoenix 4.40 to render the simulation automatically when it stops. However, with Maya 2022.1 and Phoenix 4.41, I receive the following error:
// Error: Error importing renderOnSimEnd python module - (kFailure): Unexpected Internal Failure //
I realize Maya 2022 runs with Python 3, though I'm not well versed in the differences between Python 2 and 3 if that is the issue. Any suggestions would be appreciated.
// Error: Error importing renderOnSimEnd python module - (kFailure): Unexpected Internal Failure //
Code:
//renderOnSimEnd.py import maya.cmds as cmds def OnSimulationEnd(node, t, dt): cmds.vrend()
Comment