Muralipr
Sept. 17, 2008 11:57:11
How to see Houdini script history like Maya script editor history?
for example
i'm creating one box in Maya i can see the command in script editor history
polyCube -w 1 -h 1 -d 1 -sx 1 -sy 1 -sz 1 -ax 0 1 0 -cuv 4 -ch 1;
// Result: pCube1 polyCube1 //
this type of option is available in Houdini?
:?:
JColdrick
Sept. 17, 2008 12:29:41
In an hscript textport, you can
opscript -b /obj/my_geo
The ‘-b’ means just show what's not set to default. Do a ‘help opscript’ for more information and options.
Cheers,
J.C.
Muralipr
Sept. 17, 2008 13:34:53
Thank u JColdrick it's working.
how to see python script history?
or
python is only for API
wolfwood
Sept. 17, 2008 13:42:27
print hou.node(“/obj/my_geo”).asCode()
help(hou.Node.asCode)