I'm trying to find a command in Softimage where you can toggle between a subdivision surface and then back to poly mode. Similar to what Max has with the NURMS toggle subdivision but a Softimage version. I already know about the plus and minus keys to preview different levels of subdivision in Softimage. Would I have create a custom command in order for it work?
Replies
+ and - would probably be the most used way for stepping up and down subdivisions in softimage. If you're looking to jump straight to a specific level and back instead of incrementally increasing it, then "geomapprox.gapproxmosl" and "geomapprox.gapproxmordrsl" will probably be the values you'll want to change.
You can also select your object and go to Selection > Geometry Approximation and click on the Polygon Mesh tab and set different levels of subdivision independently for viewport and rendering.
I guess plus and minus keys will have to do. I'll try what Ark suggested about Ctrl and + together and the Alt and + together. Might be what I was looking for. Thanks.
You can assign that to a shortcut if you'd like.
Thank you cryrid. I will try out the the code in Softimage. Thanks for your help.
Normally I could just open the code in the Script editor. Select the entire code. Then drag and drop the whole entire thing onto the "New Custom Toolbar..." window. It will then ask me if I want it to be "Script Button" or "Script Command (external file)". I would choose the "Script Command (external file)" option then just fill the needed boxes and I get a script command. Is this how you would create a script command in Softimage? Or is there a proper way of create a script command in Softimage?
Shift + "+" and shift + "-" seem to be free and would make good spots for them.
As for installing script commands, there are different ways of going about it. If its an exported file I drag it onto the script toolbard, or if its just text I might copy and paste it into the script editor.
So where would I put the code you mentioned above in the original code you gave me? So would it look something like this then:
Code:
set subd = Selection(0) if Getvalue (subd +".geomapprox.gapproxmosl")= "4" then SetValue subd +".geomapprox.gapproxmosl", Decrease Subdivision SetValue subd +".geomapprox.gapproxmordrsl", Decrease Subdivision else SetValue subd +".geomapprox.gapproxmosl", Increase Subdivision SetValue subd +".geomapprox.gapproxmordrsl", Increase Subdivision end if
Or just simply put this
Code:
IncreaseSubdivision IncreaseSubdivision IncreaseSubdivision IncreaseSubdivision
and
Code:
DecreaseSubdivision DecreaseSubdivision DecreaseSubdivision DecreaseSubdivision
individually and create a custom command for each of them right?