Skip to content

Instantly share code, notes, and snippets.

@serguei-k
Created January 4, 2019 19:21
Show Gist options
  • Save serguei-k/7acb537376bc7fea4688915c7fb9408d to your computer and use it in GitHub Desktop.
Save serguei-k/7acb537376bc7fea4688915c7fb9408d to your computer and use it in GitHub Desktop.
Save default array values
MStatus Node::shouldSave(const MPlug& plug, bool& result)
{
if (plug.attribute() == arrayAttribute)
{
result = true;
return MS::kSuccess;
}
return MPxNode::shouldSave(plug, result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment