Try this: ObjAry = getMAXFileObjectNames file mergeMAXFile file ObjAry #select deselect $helper_name.children deselect $helper_name delete $ $he…
polyop.getFaceNormal $ 111
selection.count
at time (f) ( valOne = thePoint.pos.controller[1].value valTwo = thePoint.pos.controller[3].value str = formattedPrint (valOne * valTwo) format:”.3…
i can’t find any method to create a group using maxscript, i think you need to manually create a group. After creating a group u can assign cloth to c…
To add to a existing cloth sim modifier, all you need to do is to add the same modifier to the object. For example if you have a cloth sim modifier ad…
sorry dude, was on a weekend holiday… Hope you got ur answer.
i forgot about that, while creating proboolean we used move method which deletes the actual node so we get deleted node. Sorry i’m not on my system ri…
converttopoly obj
obj = selection[1] boxArray = #() for i in (polyop.getVertSelection obj) do ( pos = polyop.getVert obj i b = box() b.pivot = b.center b.pos =…
Try This, just select the vertex and run the script. obj = selection[1] converttoMesh obj boxArray = #() for i in (getVertSelection obj) do ( pos =…
enjoy… select objects — selects all objects grp = group selection — groups all selection grp.pivot = [0,0,0] — sets group pivot to position …
From Maxscript Help: Curve ControlccPoint <pt_point2> <in_point> <out_point2> [bezier:<false>] [corner:<false>] [lock_x:…
@NAIK The script i wrote for u checked Big with Small. It was specific objects while in this case it checks with each and every object with respect t…
Try this… objs = selection as array for i = 1 to objs.count where not isDeleted objs[i] do ( for j = i+1 to objs.count where not isDeleted obj…