ZeBoxx2
@zeboxx2
New Member
Joined: Feb 14, 2024
Topics: 7 / Replies: 1402
Reply
RE: Is it possible to work out the normal of a face based on the smoothing of the surface

yep, makes perfect sense good luck – sounds like a nice project

16 years ago
Forum
Reply
RE: Is it possible to work out the normal of a face based on the smoothing of the surface

I think that the normal at the barycentric center of the face is the same as what getFaceNormal() returns – so if you just need it at the center, you …

16 years ago
Forum
Reply
RE: Is it possible to work out the normal of a face based on the smoothing of the surface

I may be mistaken – autogrid and such handily respect derived and explicit normals, so I hope I’m just missing something – but I think you’d have to d…

16 years ago
Forum
Reply
RE: Trying to create a material with a jpg sequence bitmap in diffuse

make sure you call sort() on tnFiles, just so the files are in the correct order (presuming they’re zero-padded), as sometimes files get collected out…

16 years ago
Forum
Reply
RE: Confused by Net Render Syntax

saving to PNG is easy enough – set the filename extension to “.png” 8-bit is the more difficult bit – have a play with the PNGio interface: showinte…

16 years ago
Forum
Reply
RE: Confused by Net Render Syntax

use a regular button and in its ‘on <button> pressed’ event, use getSaveFileName() or getSavePath() (see help file) to get the filename/folder t…

16 years ago
Forum
Reply
RE: Change text color in rollout?

You could render your own text to a bitmap and use an imgtag to place it… but that’s craziness If max’s windows messaging was a bit mor powerful, yo…

16 years ago
Forum
Reply
RE: How to keep radiobuttons.state

The main problem is that you can’t define a global variable within the rollout definition scope (i.e. where you define the buttons, radiobuttons, etc….

16 years ago
Forum
Reply
RE: Print Particle Screen positions to file.

just to add… beware of using the floats if you’re going to be printing to file… format “%” <float> only gives you so much precision. Compound t…

16 years ago
Forum
Reply
RE: Print Particle Screen positions to file.

o_O There are time-travellers among us

16 years ago
Forum
Reply
RE: move node callbacks?

you could set up a callback (that can be set persistent and thus saves with the scene) that re-establishes the change handler once the file is loaded……

16 years ago
Forum
Reply
RE: Deleting interdependent script controllers

hmm… I thought there was (one of the maxscript options in the customize menu), but I guess not. Try this… dialogMonitorOPS.UnRegisterNotification i…

16 years ago
Forum
Reply
RE: Backburner Job Dependencies

try this thread, it should have information on how to set a job with dependencies when submitting (via the command line render) and how to set an exis…

16 years ago
Forum
Reply
RE: Animated Properties on an object

I’d loop / recurse over the subanims, actually – much simpler, although there’s a (very slim) chance you’ll have an animated property that does not ap…

16 years ago
Forum
Reply
RE: Animated Properties on an object

a la… c = $.position.controller.percent.controller Controller:Linear_Float ks = c.keys #keys(0f, 33f, 53f, 83f, 100f) for k in ks do ( format “% -&g…

16 years ago
Forum
Page 41 / 94