Serejah
@serejah
New Member
Joined: Feb 14, 2024
Topics: 34 / Replies: 1221
Reply
RE: Access subtex diffuse properties

you can use getClassInstances to get all the bitmaps or any other class getClassInstances bitmaptexture target:selection[1] this way you can manipula…

4 years ago
Forum
Reply
RE: MAXScript | EXCEPTION_STACK_OVERFLOW The thread used up it's stack

I don’t know python, but shouldn’t it be like this? def on_command_received(self, message): mxs.disableRefMsgs() mxs.execute( “”” some mxs co…

4 years ago
Forum
Reply
RE: How to extend the spinner rightclick menu

Wheiraucher: just quickly back and forth to some value do you think it will work for turbosmooth iterations spinner?

4 years ago
Forum
Reply
RE: How to extend the spinner rightclick menu

Wheiraucher: how do I know if this spinner controls the length, the width or the height of a Box? it was discussed earlier, but seems like there’…

4 years ago
Forum
Reply
RE: How to extend the spinner rightclick menu

I guess spinners context menu is generated at runtime, so you can’t do appendMenu once when it shows for the first time. You’ll have to continuously m…

4 years ago
Forum
Reply
RE: Split String

just strip all the spaces first print (for t in FilterString (substituteString str ” ” “”) “$$” collect FilterString t “=”) #(“NodeName”, “pCube1…

4 years ago
Forum
Reply
RE: Select FFD Control Point

oh, I missed that from your post. I don’t know if maxscript method to select control points exists but here’s what we can do about it that’s what is g…

4 years ago
Forum
Reply
RE: Select FFD Control Point

mmakivic: I get an error. MAXScript reference: There are two special considerations when accessing FFD control points. First, you can only acces…

4 years ago
Forum
Reply
RE: Very strange bug – upper, lower case gets stuck on render output filenames!

try to release assets before assigning a new path asset = AssetManager.GetAsset filename #RenderOutput — #RenderOutput for vray vfb paths & #Bit…

4 years ago
Forum
Reply
RE: [SOLVED] Scripted controller self reference mystery on animated spline

Harmalarm: That works great up until you set the spline to rendering “Enable in viewport”. What if you disable ref messages for a moment of shape…

4 years ago
Forum
Reply
RE: [SOLVED] Scripted controller self reference mystery on animated spline

what about something like this? delete objects gc() p1 = point name:#pt_1 pos:[50,25,0] p2 = point name:#pt_2 pos:[-50,25,0] rect = Rectangle width…

4 years ago
Forum
Reply
RE: MAXScript: How to create layered .NET window in Windows Forms

Just curious how long it takes for your script to start?

4 years ago
Forum
Reply
RE: Maxscript for loop hopping

it depends on what you mean by valid. Will it work? Yes. Is there any logic in it? No. Imagine a situation when i is equals to 10 and elem = get_elem…

4 years ago
Forum
Reply
RE: Maxscript for loop hopping

ricch: Does it mean “where true” Yes, while and where expects boolean I doubt that I could explain it better than mxs reference

4 years ago
Forum
Reply
RE: Maxscript for loop hopping

yes, it creates an array of integers, but you can cast it to bitarray bits = ( for i=1 to 6 where mod i 2 == 0 collect i ) as BitArray >> #{2,4…

4 years ago
Forum
Page 28 / 84