Bobo
@bobo
New Member
Joined: Feb 14, 2024
Topics: 1 / Replies: 2249
Reply
RE: Random Extrude script

I hope you realize that MEL has never worked in 3ds Max, no matter what version :shrug:

15 years ago
Forum
Reply
RE: Particles won't activate

There is a known bug somewhere deep in PFlow which prevents a newly script-created system from generating particles unless the scene is saved and then…

15 years ago
Forum
Reply
RE: Determine if an object falls within a cone in relation to another object

*Take the Looking Direction (the axis of the cone) as Vector1 and normalize it. Typically it would be something like the -Z axis or something like tha…

15 years ago
Forum
Reply
RE: is it smarter way for this ?

MAXScript is expression-based, so using intermediate variables to store the various stages of calculations, while allowed and possible, are not always…

15 years ago
Forum
Reply
RE: Question about storing shadow types with shadow generator

JHN: dontcollect why wasn’t I told, nobody mentioned it, I’ve been mxs’ing for years now… Nice one, I love how these little gems show up every no…

15 years ago
Forum
Reply
RE: Question about storing shadow types with shadow generator

Since you are trying to store actual object instances, your best bet is a PERSISTENT GLOBAL variable (with a very long unique name to avoid collisions…

15 years ago
Forum
Reply
RE: Question about storing shadow types with shadow generator

Not sure why you couldn’t – what do you get when you try? There are two approaches here – you can store the actual instance of the shadow generator, …

15 years ago
Forum
Reply
RE: Saving Data in a MaxFile?

Here is a quick test for saving appData in the scene Root: resetMaxFile #noprompt setAppData TrackViewNodes 20100803 “Testing 123” getAppData TrackVi…

15 years ago
Forum
Reply
RE: Saving Data in a MaxFile?

There are so many ways to do it, I am not even sure where to start Obviously, you can create a scene object and store the data in either a dedicated…

15 years ago
Forum
Reply
RE: How to put a variable value in a queryBox dialog?

exampleVar = “Fred” result = queryBox (“Oh my!, it seams as if “+exampleVar as string+” has been sleeping with your wife. Is this OK?”) title:”OMG!…

15 years ago
Forum
Reply
RE: Get geometry Vert ID from map Vert ID?

There is no way to know how many vertices correspond to a mapping vert, or the other way round. All you can find is what map faces reference that map …

15 years ago
Forum
Reply
RE: Question optimizing 3 'for collect' loops

I tried to benchmark all these expressions while using about 10,000 objects and ALL code executed in about 550 ms, +/- 10 ms. So I don’t think either …

15 years ago
Forum
Reply
RE: ParticleTestTime

There were of course at least two typos in the code – the == after the IF was just =, and the particleTestTime was missing the period after the pCont…

15 years ago
Forum
Reply
RE: Matrix Math Problem…

Which was exactly the point and why I did not want to post any real code

15 years ago
Forum
Reply
RE: Matrix Math Problem…

You are over-complicating things. All you need is: *Get the Normal in world space. *Get the two vertices, build a vector in world space. *Cross-Produ…

15 years ago
Forum
Page 15 / 150