ivanisavich
@ivanisavich
New Member
Joined: Feb 15, 2024
Topics: 63 / Replies: 313
Reply
RE: Highlighting pickbutton using SDK?

You have to step through your code. Put breakpoints where the crashing is occurring, and then use VS to check the value of the variables. Your pickbut…

9 years ago
Forum
Reply
RE: Highlighting pickbutton using SDK?

I’m not sure how to store data inside a Utility plugin, but I can help you with the pickbutton. There are a couple of virtual functions in a PickMode…

9 years ago
Forum
Reply
RE: Making a C++ plugin compatible with multiple 3ds Max versions?

He said in his original post that he’s building with 2015 SDK, and then asked if it will work in 2016. It will.

9 years ago
Forum
Reply
RE: SDK vertex color type manipulation??

Anyway, I know that the node is valid because my plugin is a modifier Well, you didn’t read the SDK help files for ModifyObject (most important step…

9 years ago
Forum
Reply
RE: SDK vertex color type manipulation??

The code for most maxscript commands are included in the SDK sample files. For example, here is the SDK equivalent to the ‘setMapSupport’ function: …

9 years ago
Forum
Reply
RE: SDK soft selection data for editable poly?

You have to include “polyobj.h” in your project.

9 years ago
Forum
Reply
RE: SDK: print an array of unknown size to the MXS listener?

Couldn’t you just iterate through the array, printing each value? #include <vector> std::vector<float> theArray; for (int i = 0; i …

9 years ago
Forum
Reply
RE: SDK: Fragment Graph?

Thanks for the info!

9 years ago
Forum
Topic
Forum
Replies: 2
Views: 18
Reply
RE: Nitrous SDK: display outside of bounding box?

So I’m not sure how many other people will run into this issue…but I figured I’d post my solution for posterity’s sake, since I finally found a hacky …

9 years ago
Forum
Topic
Forum
Replies: 1
Views: 18
Reply
RE: SDK: Help with GW memory leaking?

Right, but the GraphicsWindow API doesn’t return a TexHandle*. It returns a DWORD_PTR. I’m assuming since a TexHandle can create a DWORD_PTR itself, …

9 years ago
Forum
Reply
RE: SDK: Help with GW memory leaking?

Unfortunately all of my code is running outside of typical display functionality…all the TexHandleMakers that get passed through normal display functi…

9 years ago
Forum
Topic
Forum
Replies: 6
Views: 18
Page 15 / 26