im trying to create a 3d fluid using python.
i checked the MEL, :
create3DFluid 10 10 10 10 10 10;
I thought the conversion to python is like:
import maya.cmds as mc
mc.create3DFluid( 10 ,10 ,10 ,10 ,10 ,10)
but its not working.
the method 'create3DFluid()' is not in python command reference.
I stuccked at the first point of fluids.
should i have to import any other package or is there an alternative way?
please help me.
thanks in advance.