Yup. But I need also first instance
denisT: all unique nodes that have only unique modifiers? No. Only unique nodes. I wrote simple tool by request on scriptspot.com and i need a si…
One question Is this proper way to collect all unique nodes that have assigned modifiers fn uniqueNodes objs = if objs.count != 0 do ( local …
I did not know about refhierarchy interface Very cool Denis. Thanks for info.
Try this example theBox = Box pos:[100,0,0] theTea = Teapot radius:10 theMody1 = TurboSmooth() addModifier theBox theMody1 addModifier theBox (…
First case for i = 1 to 10 where findItem objlist i != 0 do print i And second case (opposite) for i = 1 to 10 where findItem objlist i == 0 do pr…
Here also a example how to calculate number of days between two dates fn GetDaysBetweenDates firstDate: secondDate: = ( fn checkInput &out d…
…or date.ToShortDateString()
Blobynator: Actually, I’d be greatfull if I could have a tiny explanation about how works the second example ? I have well integrated it in my scrip…
And one more example with values only MyBonesPerVert = #(3, 2, 4) MyVertexWeight = #(0.105833, 0.788333, 0.105833, 0.839333, 0.160667, 0.123, 0.25…
Are you purposely forgot to parent points to dummy? I added this line “(point pos:[k*20,y,0] wirecolor:orange parent:b)” which is works but after dele…
So what do you suggest? For now when I delete master dummy then press Undo and delete again everything works fine. I newer used “when construct mechan…
I have a question: Why we need to use for loop with n=[1,1,10] and declare master dummy as global. Can we simply use this concept? global ContainerA…
This is very interesting topic. Denis I really appreciate your contribution an effort for amazing explanation. Probably this is not perfect way but wo…
In some cases “collect” can produce much slower solution. Anyway “appendIfUnique” with “append” method is the right one… I think Also I often use th…