Someone has already taken advantage of the script extension for controllers in Max 2016 EXT1. Not MCG but in some ways this is better
I’m hopeful that MCG Controller will do away with a lot of slow script controllers. I’ve been playing with it for a few months and made a few little …
Although that example is too complex… sel = selection as array fn compareFN v1 v2 = ( case of ( (v1.pos.z < v2.pos.z): -1 (v1.pos.z > v2…
Have a look at qSort
You may want to set up some kind of batch or program that changes the resolution then launches max, as doing it after launch may screw up your viewpor…
Autodesk have hinted that UHD support is on the horizon, but Max is a complex beast with very old structure for UI, which also supports maxscript UI, …
The script easily makes UIs, you can tweak and adjust offsets and alignments interactively. Which is great when you want to make sure your UI is perfe…
I’m very close to having this all working but alas I found a problem with my method of digesting a control into it’s type, name, label and then parame…
I actually started to play with editing the layout of the buttons in the rollout creator by using the rollout creator
First[1] is telling maxscript that you want to get the first index (not the 0th index as other languages do). In your example first=#(“Supercube”, “…
How to test if a variable is undefined MaxScript if DavesMagicTool == undefined do DavesMagicTool = DavesToolOfJoy() Python if not (‘DavesM…