Gumroad, Autodesk App Store.
Check the maxscript reference for “How To … Move Objects to a Surface”
I can confirm the bug. Tested on max2020. Tomorrow will test on 2022.
As far as I know the SiNi provides maxscript access to some of their plugins(there are “Ho to use” examples, provided by SiNi).
Try with this: importFile “C:\Users\User\Downloads\Untitled-1.ai” #noPrompt
if (mat = selection[1].material) != indefined do ( view = (sme.getview sme.activeView) AddMaterialToSME mat view ) For selected object.
Will this work on max2016?
Check the code. It is updated. The method of arranging the created material was shown by Serejah or denisT(I don’t remember), so you have to thanks to…
( WM_COMMAND = 0x111 ID = 0xA02C — Layout All Button source ID function AddMaterialToSME mat view = ( view.CreateNode mat [0,0] hwnd =…
Try with this: ( function AddMaterialToSME mat = ( if sme.isOpen() do ( view = sme.activeView view.CreateNode mat ) ) tempMatsArr…
I used it a lot and it does work. Just have to add flushLog() frequently.
One possible solution, if I understand properly what you want to achieve: ( for o in objects do ( pivotPos = o.pivot o.pos = [0,0,0] o.pivot …
I think the funciton iin this code was posted by denisT on this forum: ( function GetLayerNodes layer list: recurse:on = ( layer.nodes &nn …
I am doing something wrong, but I can’t figure out what. Here is part of the code: string re_with = (\”with\\\\\”); var spaces = new char[]{‘…
Few minutes ago I wrote a script which, after I select the line number in Maxscript listener(where the error occur) will go to the line in the current…