miauu
@miauu
New Member
Joined: Feb 14, 2024
Topics: 122 / Replies: 1116
Reply
RE: 3dsMax plugin store

Gumroad, Autodesk App Store.

1 year ago
Forum
Reply
RE: Script to set Z position of Dummies to Z level of the mesh below them

Check the maxscript reference for “How To … Move Objects to a Surface”

1 year ago
Forum
Reply
RE: Intersect bug in max

I can confirm the bug. Tested on max2020. Tomorrow will test on 2022.

1 year ago
Forum
Reply
RE: Display color in viewport polygons by Material ID

As far as I know the SiNi provides maxscript access to some of their plugins(there are “Ho to use” examples, provided by SiNi).

2 years ago
Forum
Reply
RE: How to avoid pop-up during AI file import

Try with this: importFile “C:\Users\User\Downloads\Untitled-1.ai” #noPrompt

2 years ago
Forum
Reply
RE: Move material from Temporary Library to an open SME

if (mat = selection[1].material) != indefined do ( view = (sme.getview sme.activeView) AddMaterialToSME mat view ) For selected object.

2 years ago
Forum
Reply
2 years ago
Forum
Reply
RE: Move material from Temporary Library to an open SME

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…

2 years ago
Forum
Reply
RE: Move material from Temporary Library to an open SME

( WM_COMMAND = 0x111 ID = 0xA02C — Layout All Button source ID function AddMaterialToSME mat view = ( view.CreateNode mat [0,0] hwnd =…

2 years ago
Forum
Reply
RE: Move material from Temporary Library to an open SME

Try with this: ( function AddMaterialToSME mat = ( if sme.isOpen() do ( view = sme.activeView view.CreateNode mat ) ) tempMatsArr…

2 years ago
Forum
Reply
RE: Redirecting Listener output to another window

I used it a lot and it does work. Just have to add flushLog() frequently.

2 years ago
Forum
Reply
RE: Move to Object Position

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 …

2 years ago
Forum
Reply
RE: Filling the listbox with all objects under specified layer

I think the funciton iin this code was posted by denisT on this forum: ( function GetLayerNodes layer list: recurse:on = ( layer.nodes &nn …

2 years ago
Forum
Reply
RE: Fast search through text file

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[]{‘…

2 years ago
Forum
Reply
RE: Fast search through text file

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…

2 years ago
Forum
Page 1 / 83