Search - User list
Full Version: Pick Edge Session
Root » SI Users » Pick Edge Session
julca
Hello Softies (and others) !

Do you know how to script a “Pick Edge Session” to request one or more edges selection from the user ?

Like this in softimage SDK doc :
http://docs.autodesk.com/SI/2015/ENU/Softimage-Developer-Help//index.html# [docs.autodesk.com]!/url=./si_cmds/PickElement.html

Thanks.
johm
here's a basic python snippet that should get you started…

import toolutils
scene_viewer = toolutils.sceneViewer()

scene_viewer.setPickGeometryType(hou.geometryType.Edges)
sel = scene_viewer.selectGeometry( prompt = “pick something” , use_existing_selection=False )
# sel.whatever; ie, sel contains whatever you selected
print sel.selectionStrings()
julca
YESS !!
And that's a really good start !

Thank you.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB