I’m getting the following error when trying to compile my 2012 code for 2013.
error C2248: ‘MFnAnimCurve::MFnAnimCurve’ : cannot access private member declared in class ‘MFnAnimCurve’
I did a diff between MFnAnimCurve.h and it doesn’t look like anything has changed AND MFnAnimCurve doesn’t have any private members. The actual code is :
updateCurves( acX, acY, acZ);
and acX, acY, acZ are all passed into the function that calls this as MFnAnimCurves
MFnAnimCurve acX, MFnAnimCurve acY, MFnAnimCurve acZ
Any ideas what has changed between 2012 and 13 that would cause this?
Thanks in advnace for any help