Hi you may need to increase heapsize memory allocation (customize/preferences/Maxscript)
The errors you have is because you need to link with the correct (x64) version of OpenNL library Download the blender source files open (convert) …
You cannot access importer options from Maxscript. (AFAIK) you should import the 1st file: importfile f (this will open the otions for the importer) …
You need to run the options of the importer on the first import, and make sure it’s not set to always show option, then #noprompt should work, and the…
Hi, you can use the Unwrap do do this: $.modifiers[#unwrap_uvw].unwrap5.mappingFit ()
Hi select the faces/polys and and a push modifier.
Hi, I think you need to declare the variable first : local vart1 if var1 == undefined then ( var1 = 0 ) var1 += 1 print var1 [0,0,…
posted in the wrong thread, sorry
Yes, I ran into this as well… I didn’t post the complete stuff… I think you should do the check in the dragover handler rather than in the Dragdrop, …
Yeah, I hear you, Took me a while to get this working… the idea is that to enable the drag and drop, you need to use ‘DragDropEffects’ properties of …
Use a tube with 4 sides uncheck smooth
Ideas: Compare Render: kinda like maya or the RAM player but enabling more than 2 images.
Hi look for ‘getElementsUsingFace’ in MaxScript Help TheMod=modpanel.getcurrentobject() TheMod.setSelection #face (PolyOp.getElementsUsingFace $ 1)
Hi to collect all jpg in D:\Maps : Files=getfiles “D:\Maps\*.jpg” to collects all files in D:\Maps : Files=getfiles “D:\Maps\.” look for ‘getfiles’…
Most interestring ! Thx a lot for this, great way to build a UI !