denisT: BTW does any one know or guess why the scale controller is usually picked as an ‘accomplice’ of this hack? Because it’s the last one eva…
You can set the skin pose for a node (bone, shape object, whatever…) without a skin modifier. And use this class’s methods to retrieve it.
This is the header file you need to include: #include <iSkinPose.h> Search the SDK help docs on the ISkinPose Class Reference and you’ll see a…
Let me check…
For your root bone maybe try getting TM using: ISkinPose* GetISkinPose(INode& n) …and then get the the parts using: SkinPos() SkinRot() SkinSca…
I’d like to purchase these as well… so I hope someone knows.
Thanks.
Here are the links to the ADN SDK training:
Does Express require you to install the appropriate Windows SDK? There is free SDK training you can download from the Autodesk Developer Network. Al…
Well, in my case… the export process happens so fast that it’s not practical to think the user could press ESC to abort and the ProgressBar simply fla…
We could invoke EndEditParams() to lock out the user maybe?
Well if that doesnt work I guess I can try: if ( GetAsyncKeyState(VK_ESCAPE) ) { } I’ll try and work on it Saturday.
I should just be able to add a WM_CHAR message check with wParam = VK_ESCAPE
@Klunk-1 – Thanks! I’ll give this a try… Also, not sure you saw my previous edit: Also, MSDN states that you must use DestroyWindow() on a modele…