Klunk1
@klunk1
New Member
Joined: Feb 14, 2024
Topics: 34 / Replies: 650
Reply
RE: [SDK]Exporter Plug-in Questions– Cleanup?

stays around as a global??? It has some pointers inside it to the scene nodes/properties during the export process which may be invalidated, yes? …

12 years ago
Forum
Reply
12 years ago
Forum
Reply
RE: [SDK]Exporter Plug-in Questions– Cleanup?

vector<Point3> myvec; is not something you need to worry about, the internal vector code will clean up it’s allocation, and the myvec variable …

12 years ago
Forum
Reply
RE: [SDK]Exporter Plug-in Questions– Cleanup?

the static object instances will be around for as long as the dll is loaded ie if not deferred loaded it will be as long as max is running. Otherwise …

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

In the body of the “DoExport” method m_noteCatalog is never initialized to anything… just passed into the CollectNotes method as: so you are indexi…

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

btw where and what is the vector<IPoint2>& catalog initialized to ?

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

i doubt that’s the issue here, if you can’t get the debugger working correctly then you’ll have to use assert to trace the error.

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

yep I added a notetrack with 6 notekeys and they were successfully collected in the notelist tab. also what version of max are you compiling for ?

12 years ago
Forum
Reply
RE: getting serial number info

of course it is, but if your going to that trouble you would be better off moving the core functions into the dlx as native c++ but either way it’s no…

12 years ago
Forum
Reply
RE: getting serial number info

you could probably find it in the registry somewhere via mxs.

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

the following ran with out issue in my exporter #if 1 NoteKeyTab noteList; INode* maxnode = child->GetMaxNode(); if(maxnode) { …

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

i would think your error lies here NoteKey* nk = nt->keys[t]; keys would be an index array access so should read NoteKey* nk = nt->keys[j]; …

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

should have used // TODO: this should be exported from the SDK! then it would have appearing in the visual studio task list and would have been fixe…

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

I don’t need to look… penny to a pound it’s a NULL pointer Access violation writing location 0x00000000. You are attempting to write or …

12 years ago
Forum
Reply
RE: [SDK]: Exporter class method for NoteTrack Collection…

thats Debug Multithreaded DLL (/MDd). Hybrid should be Identical to a Debug build, settings wise, but with Multithreaded DLL in [b](C/C++ > Code Ge…

12 years ago
Forum
Page 8 / 46