lo1
@lo1
New Member
Joined: Feb 14, 2024
Topics: 44 / Replies: 1920
Reply
RE: Tips of working on a large MaxScript projects

The following is the function I’m using, part of a larger framework struct which is loaded at startup. The libraries are cached by name. libraryCach…

10 years ago
Forum
Reply
RE: Tips of working on a large MaxScript projects

For inhouse tools I use a system similar to Javascript’s ‘Require’, which lazily loads .ms files, and caches the module in a central location. Thus, …

10 years ago
Forum
Reply
RE: Q – Read image EXIF data

This can also be achieved via .NET

10 years ago
Forum
Reply
RE: Proper use of using struct in other struct

Please explain why you find this improper in any way. B has a dependency on A. That doesn’t prevent C from having a dependency on A.

10 years ago
Forum
Reply
RE: 3dsmax SDK renderer , material preview

Doesn’t make sense to me that you would need to know, I assume max would take care of this automatically. If you want to take a look at an implementat…

10 years ago
Forum
Reply
RE: 3dsmax SDK renderer , material preview

Yeah they don’t exactly make it easy to find.

10 years ago
Forum
Reply
RE: 3dsmax SDK renderer , material preview

RenderGlobalContext has a boolean field called inMtlEdit, which lets you know if you’re currently rendering a material sample.

10 years ago
Forum
Reply
10 years ago
Forum
Reply
RE: SDK Light ParamBlock ??

At which part are you stuck? Start with calling GetShadowGenerator on your GenLight object.

10 years ago
Forum
Reply
Reply
RE: Maxscript – Good place to save ini? and permissions?

For me that path does refer to the 3dsmax folder inside the user directory, is it not always the case?

10 years ago
Forum
Reply
RE: colorMan.getColor #background returning wrong color

It is getting gamma corrected. Create your bitmap with gamma:1.0

10 years ago
Forum
Reply
RE: Collecting used classes

I can think of how to do it using the SDK: Enumerate all the animatables and for each one save their class in a std::set

10 years ago
Forum
Reply
RE: This drives me crazy!!!

Shouldn’t it be button btn1 “Btn” pos:[16,32] width:24 height:24 images:#(i, a, 9, 1, 1, 1, 1) ?

10 years ago
Forum
Reply
RE: Can anyone help me cancel this script?

functions run synchronously, which means your UI is not accessible while your code is running. two options: use progressStart and progressEnd. This…

10 years ago
Forum
Page 9 / 131