How to correctly implement ChannelsChanged and ChannelsUsed when creating a modifier plugin for 3dsmax in C#?
When I ask VS to implement the abstract class derived from Autodesk.Max.Plugins.Modifier, I get following to implement:
public override uint ChannelsChanged {
get { throw new NotImplementedException(); }
}
public override uint ChannelsUsed {
get { throw new NotImplementedException(); }
}
In C++, I should do something like this:
ChannelMask ChannelsChanged() {return PART_GEOM|TEXMAP_CHANNEL|VERTCOLOR_CHANNEL; }
Some C++ defines like GEOMOBJECT_CLASS_ID
show up in C# SDK as SClass_ID.Geomobject
. But I can't find anything like those flags in the Object Browser for Autodesk.Max. There are plenty of information missing besides this one. I didn't find examples or how-tos for Modifiers in C# anywhere.
Any help is much appreciated.
The fact that the methods expects a
uint
as a return value, hints that Autodesk have failed to implement a strong enumeration for Object Channel PartIDs.You can define your own enumeration to handle it, based on the values defined in the c++ SDK.
And then in your methods use it like so