Hello,
I am trying to develop an object with the module SDK but can't get the "Drag Connections" feature to work. My object has the FlexSimObject class as its superclass, I tried to override the getClassType method to return FlexSimObject::getClassType() but it still doesn't work.
Another solution that I tried was adding a classtype to the allobjects header file by the name of CLASSTYPE_OBJECT, by the value of 0x80000, and returned FlexSimObject::getClassType() | CLASSTYPE_OBJECT on the override getClassType method. This also didn't work.
I made it work by returning FlexSimObject::getClassType() | CLASSTYPE_FIXEDRESOURCE, but that's not what I want because my object should not be a fixed resource.
Could someone give me some advice?
Thank you.