The second example you posted should not throw the exact error you posted, though it probably still won’t do what you want because modPanel.addModToSe…
you’re still referring to $ inside the loop. for o in selection where classof o == whatever do ( o.someProperty = someValue –$.someProperty …
dotnetObject “Autodesk.Max.Global”
(dotnetclass “Autodesk.Max.GlobalInterface”).Instance is not undefined on my system.
Something’s definitely wrong with your 3dsmax.
What you drew is not two vectors, it’s two line segments. A vector has only a direction and a length, which can be described as a line going from the …
Looks like I’m going blind then
If I remember correctly, you must call it recursively for every single control in your dialog as well.
You have to do it using the GetCOREInterface8()->RegisterModelessRenderWindow(Hwnd window); GetCOREInterface8()->UnregisterModelessRenderWindow…
Checking plugin.h we find: // The following methods are supposed to be used only internally, therefore // they are not exported. // Constructo…
Just try to include all of them, and if that doesn’t help, then your problem is not related to libraries.
It actually does:
You said it yourself, you’re missing a lib, not a header include.
Most of my work is based on c#, but I almost never reference Autodesk.Max.dll. the couple of times I tried it, nothing seemed to work. Instead, I fac…
if you don’t need the prefix kept with the array, you could get rid of them using this line after the grouping code: arr = for a in arr collect a.v2 …