|
Hi,
Calling this method in an interface IMtlParams
virtual void SetPickMode(PickObjectProc *proc)=0;
in previous version of max (2011,2010,...) has always worked (in my plugin).
I have just call it with an argument of an object derived from PickObjectProc.
In 2012 nothing happens when I call it, not even any error.
My plugin is working perfectly in previous versions of max.
Anybody has any sugestion what might has changed in using PickObjectProc?
Object I am using when calling that method is of this class:
class Picker : public PickObjectProc
{ public:
Picker();
virtual ~Picker();
virtual BOOL Pick(INode *node);
virtual BOOL Filter(INode* node);
virtual void EnterMode()
{
}
virtual void ExitMode()
{
}
};
Thanks for any help.
Milan
|
|
|