handiklap
@handiklap
New Member
Joined: Feb 15, 2024
Topics: 12 / Replies: 45
Reply
RE: Scope/Visibility Confusion

I thought that was all that was required, but my function script already calls it as a property of the rollout. Here’s the two scripts as they functi…

18 years ago
Forum
Reply
RE: Scope/Visibility Confusion

Well, if I declare my rollout variable as an uninitialized global before my includes, it works, but is this the correct way to do it, i.e. is doing so…

18 years ago
Forum
Topic
Forum
Replies: 5
Views: 18
Reply
RE: custom elements render. Occlusion passes.

Moosley: the scripts weight in at over 2600 lines of code! How odd, the scripts I’ve set up for our rendering system are just over 2600 lines as…

18 years ago
Forum
Reply
RE: custom elements render. Occlusion passes.

I’ve got a few scripts that could get you started, although most of these are uncommented because, well, I’m a horrible coder. First, most of the ble…

18 years ago
Forum
Topic
Forum
Replies: 0
Views: 10
Reply
RE: how to estimate the time of rendering .

mustan9: USE STATISTICS!!1one hblan: takes too long handiklap: Well, it’s pretty much the only way without a lot of heavy calcul…

18 years ago
Forum
Reply
RE: how to estimate the time of rendering .

hblan: good idea , but it need too much time . and it looks this work should be done by discreet . I don’t think you’re considering the incredib…

18 years ago
Forum
Reply
RE: How to extract R, or G or B from bitmap ?

Yeah you can do this with maxScript: bm = render() channelOutput = bitmap bm.width bm.height for y=1 to bm.height do ( changePixels = getPix…

18 years ago
Forum
Reply
RE: Batch editing a scene

Have you tried merging into a new scene without those objects? I’m not sure of a way to do this completely unattended, but you could use the #prompt …

18 years ago
Forum
Reply
RE: How do I display bitmaps using functions in a global struct?

The functions in your struct (and any variables they initialize) are local by nature, so you have to return the bitmap instead of simply creating it, …

18 years ago
Forum
Reply
RE: Copy Array Method

It sounds like you want to duplicate an array, not copy it. Copying just makes references to the orginal array values, not copies of the actual value…

18 years ago
Forum
Reply
RE: Force Dialog update?

I’d be interested in seeing a solution for this, as I have a very similar problem with updating a timer in a max7 multi-pass dialog.

18 years ago
Forum
Reply
RE: need a script that name object the same name that the object they are linked to !

This should work: for obj in selection do ( objParent = obj.parent obj.name = “Col_” + objParent.name ) Without knowing more, this could g…

18 years ago
Forum
Reply
RE: Netrender callbacks

Yeah, I was hoping there was a simpler way, but I figured I’d have to make something along those lines in the meantime. Like you had suggested, I jus…

18 years ago
Forum
Page 2 / 4