Just out of curiosity; Why use maxops commands in general? I usually rely on Node commands: ConvertTo and it's shortcuts like convertToPoly, convertToMesh and so on. You can find all of them in maxscript manual under "Node" chapter or using apropos "convertTo" on maxscript command line.
Hello people! Quick question, why won't the bellow "Collapse To" script works on a selection of objects?fn collapseTo =( for obj in selection do ( for i in obj.modifiers.count to 1 by -1 where obj.modifiers[i] == modPanel.getCurrentObject() do ( maxops.CollapseNodeTo obj i off exit ) ))collapseTo() .. from what I…