HalfVector
@halfvector
New Member
Joined: Feb 15, 2024
Topics: 3 / Replies: 189
Reply
RE: Need help with 3dsMax SDK, 3DXI, paramblocks

I don’t know, I tried this code in MAX8 and I was able to retrieve the percentage property. I’ll try again later.

18 years ago
Forum
Reply
RE: Need help with 3dsMax SDK, 3DXI, paramblocks

Hi. I don’t know about the IGame interface but I faced this very problem a while ago. I had to access to the properties of a material created with MA…

18 years ago
Forum
Reply
RE: Need help with 3dsMax SDK, 3DXI, paramblocks

EDITED: sorry, I’ll post my answer later.

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

Hi. I guess the reason is “pic” is a local variable so it can’t be accessed externally (only in the function “newBitmap”). So the code should be: st…

18 years ago
Forum
Reply
RE: get coordinates of each vertex on plane

No, the function expect a node not a string. So if you have the name of the node (Plane01, Plane02, etc) do: obj = getNodeByName objName getVertexPos…

18 years ago
Forum
Reply
RE: get coordinates of each vertex on plane

Hi. This function will return an array with the world-space vertex positions for the object “obj”. fn getVertexPositions obj = ( local vPositions =…

18 years ago
Forum
Reply
RE: Ortographic view zoom factor? How?

Wahooney: Or do you mean the plugin sdk docs? That’s right.

18 years ago
Forum
Reply
RE: Ortographic view zoom factor? How?

Hi. Try this: scaleFactor = gw.nonScalingObjectSize() * (gw.getVPWorldWidth [0,0,0]) / 360.0 I’ve use the point [0,0,0] but depending of what you w…

18 years ago
Forum
Reply
RE: Help with UVW Overlapping faces script…

That’s right. You have to enter modify mode before. So: with undo off ( — You could use also: — max modify mode setCommandPanelTaskMode #modify …

18 years ago
Forum
Reply
RE: Help with UVW Overlapping faces script…

The problem is that the object being inspected has to be selected (alone). Try this: xOverlapObjArray = #() fn xOverlapObj xObj= ( addModifier xObj…

18 years ago
Forum
Reply
RE: Appending to dropdownlist.items

Hi. This should work: on btn_press pressed do ( items = ddl_example.items append items “FX” ddl_example.items = items print ddl_example.items ) …

18 years ago
Forum
Reply
RE: .NET and it's Implications for Maxscript [Max 9]

Oh no. A friend of mine and I developed a C# 3D engine called Haddd (this is the old web, now it is an open source project called Jad) and it is heavi…

18 years ago
Forum
Reply
RE: Show frozen in gray

The property is showFrozenInGray, e.g.: $.showFrozenInGray = false

18 years ago
Forum
Reply
RE: root node userdata?

Take a look at this thread.

18 years ago
Forum
Reply
RE: .NET and it's Implications for Maxscript [Max 9]

I’ve done a simple performance test. A script that calculates the square root of 10 million random numbers in MXS, MXS+.NET (using C#) and C++ (this o…

18 years ago
Forum
Page 4 / 13