Just curious, what can’t you access? Did you dump the name of the properties that can be set for the currently installed FBX importer/exporter? FBXE…
When I tweak your evaluate function to print the name of the event returned I see your two unaccounted for are actually the pair of callbackBegin/call…
Focus only on the rotation, if that’s all that you need saved? savedRotation = (node.transform.rotation * inverse mainShape.transform.rotation) node….
dokdan85: yep you’re right, recursion has problems and programmer should always care about depth of recursion and think that it can make stack overf…
Declare the variables as globals before you define them. <deleted example that added nothing new> EDIT – forget that example. You are trying…
That’s odd, your change works just as it is for me. (Max2011) You shouldn’t have to restart max, the font update is applied as soon as you save the p…
The ‘<’ in your sample command line would normally redirect input from a file, if we were actually running in a dos shell. The basic processor I sh…
My experience with launching a process: Many years ago I developed a ‘hidden’ version of the DosCommand plugin in order to get rid of the annoying do…
Go Canucks Go!
I think all you need to do is swap the ‘args’ that are passed to the executable and the ‘stdin’ input that will be sent to the program once it’s up an…
I ran into problems handling error output that was returned by the Perforce command line processor. I ran into the kinds of deadlock issue discussed h…
Hey, I didn’t see it either! I almost didn’t bother to submit an entry. The thing was so incredibly slow without it, I thought I’d crashed max. Afte…
Here’s mine: undo off ( normChan = 7 select $target max modify mode addmodifier $target (edit_normals name:”BeforeNorms”) beforeNorms = $tar…
Mine is the ‘inside out’ variant of Fisher-Yates shuffle
The vast majority of the time is spent converting the million element .NET array to MXS array: ( gc() local limit = 1000000 local startM = heap…