DreaTawn
@dreatawn
New Member
Joined: Feb 15, 2024
Topics: 3 / Replies: 33
Reply
RE: readDelimitedString if loop?

I think this is because of the way you’re calculating the index in vert_array to store the point3. Give this (untested) a try. vert_array[v + nrows …

12 years ago
Forum
Reply
RE: pathConfig.convertPathToAbsolute

I don’t have Max in front of me, but I think you have to do something like… SetDir #autoback (pathConfig.convertPathToAbsolute #autoback) Cheers, D…

12 years ago
Forum
Reply
RE: Sanity check please

What is better is to collect the nodes in an array and then select the array. Normally I’d agree, but for my actual use case I need to deselect as w…

13 years ago
Forum
Topic
Forum
Replies: 4
Views: 22
Reply
RE: How to exit a script early if condition is true..?

This is how I tend to do that kind of thing. fn validateSelection = ( if selection.count == 0 then ( messageBox “Nothing selected…

13 years ago
Forum
Reply
RE: Using Fracture nodes

Ah, just spotted it. In the line “fractPieces = F.pieces()”, pieces is a property of fracture, not a method . Try removing the parentheses.

13 years ago
Forum
Reply
RE: Using Fracture nodes

Hmm, I don’t think the coordinates make any difference. How are you adding the pieces?

13 years ago
Forum
Reply
RE: Using Fracture nodes

I think setPieceType is a method of Fracture, so the following (untested) should work. F = Fracture() […adding pieces…] fractPiec…

13 years ago
Forum
Reply
RE: Probleme with callbacks #postRenderFrame

You can use #postRender for that.

13 years ago
Forum
Reply
RE: Probleme with callbacks #postRenderFrame

#postRender is only triggered once per render session, so that’s not going to help you in multi-frame renders. Could you use the #preRenderFrame call…

13 years ago
Forum
Reply
RE: Need help with a script command

Ah, I think your in trouble. AddModifier doesn’t work in the same way as copy/paste in the UI, so edits aren’t copied over. I don’t think there’s any …

13 years ago
Forum
Reply
13 years ago
Forum
Reply
RE: Need help with a script command

Just use copy <yourObject>

13 years ago
Forum
Reply
RE: Need help with a script command

For your first question… addModifier $Sphere002 $Sphere001.modifiers[“edit_poly”] That will add an instance of the edit_poly modifier to the top of …

13 years ago
Forum
Reply
RE: Need help with a script command

append myObj.modifiers[“skin_wrap”].meshlist otherObj Cheers, Drea

13 years ago
Forum
Page 1 / 3