AkramParvez
@akramparvez
New Member
Joined: Feb 14, 2024
Topics: 0 / Replies: 79
Reply
RE: Merging all objects under helper

Try this: ObjAry = getMAXFileObjectNames file mergeMAXFile file ObjAry #select deselect $helper_name.children deselect $helper_name delete $ $he…

16 years ago
Forum
Reply
RE: Get face noraml from Edit_Poly

polyop.getFaceNormal $ 111

16 years ago
Forum
Reply
RE: Selection

selection.count

16 years ago
Forum
Reply
RE: number decimals to a text string ?

at time (f) ( valOne = thePoint.pos.controller[1].value valTwo = thePoint.pos.controller[3].value str = formattedPrint (valOne * valTwo) format:”.3…

16 years ago
Forum
Reply
RE: How to add new objects in cloth modifier within scripts?

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…

16 years ago
Forum
Reply
RE: How to add new objects in cloth modifier within scripts?

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…

16 years ago
Forum
Reply
RE: how to make this plugin?

sorry dude, was on a weekend holiday… Hope you got ur answer.

16 years ago
Forum
Reply
RE: how to make this plugin?

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…

16 years ago
Forum
Reply
16 years ago
Forum
Reply
RE: how to make this plugin?

obj = selection[1] boxArray = #() for i in (polyop.getVertSelection obj) do ( pos = polyop.getVert obj i b = box() b.pivot = b.center b.pos =…

16 years ago
Forum
Reply
RE: how to make this plugin?

Try This, just select the vertex and run the script. obj = selection[1] converttoMesh obj boxArray = #() for i in (getVertSelection obj) do ( pos =…

16 years ago
Forum
Reply
RE: Make a plugin

enjoy… select objects — selects all objects grp = group selection — groups all selection grp.pivot = [0,0,0] — sets group pivot to position …

16 years ago
Forum
Reply
RE: please help me understand ccPoint

From Maxscript Help: Curve ControlccPoint <pt_point2> <in_point> <out_point2> [bezier:<false>] [corner:<false>] [lock_x:…

16 years ago
Forum
Reply
RE: Mass deleting intersecting objects

@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…

16 years ago
Forum
Reply
RE: Mass deleting intersecting objects

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…

16 years ago
Forum
Page 4 / 6