I cannot share my in-house tools, but I can explain how I did it. I have my ‘update’ script, and a simple textfile with a version number in it, when …
No problem. I’ve been struggling with the same issues myself, so it’s nice if I can help someone else with it, because there’s not a lot of info aroun…
One more way I get names of a object for print \ file name generation I use: std::string str=getstring(node->GetName()); TCHAR *param=new TCHAR[st…
What you are experiencing now is very tricky at times. I’ve had similar issues often when converting old code. One thing I use on all my 2014 project…
Maxscript, python, C# or c++ let them pick their choice Each has advantages, as well as disadvantages, it all depends on what the alien technology n…
That function does not take a file path as parameter, it’s simply not exposed to maxscript that way. You might be able to hack it by using windows cal…
You find it in the maxscript help: viewport.setCamera <camera_or_light_node> Sets the active viewport to a Camera view, using the specified c…
If you want to check if the object has uv’s then you can check for the number of uv verts: meshop.getNumTVerts <Mesh mesh> so you can create a…
Thanks for the help guys, I appreciate it. I got some results now that seems to work.
Thanks DenisT, your explanation made it much easier to understand, it was much simpler then what I expected, so thanks a lot. I’ll check the rotation…
so if I understand you correct, then this would be how to get it? obj.transform.row1[1] obj.transform.row1[2] obj.transform.row1[3] 0 obj.trans…
<boolean>[b]AddLight[/b] <node>nodeAdds a light I’m pretty sure (without testing with fumefx) that its like this: The bool is what the f…
Yes, I mean UAC (user access control) ,you cannot disable it from maxscript or dotnet (not even command line), since that would make it too easy to wr…
You do not state what OS you are running, but I’m sure it’s related to ‘User Access Control’, the only way to be able to write to C: is to either disa…