Get Curve Value C++

Hello. Help me write in C ++, otherwise I have been unable to do this for an hour.

1 Like

Does the code below work?

Z1 = Mesh->GetAnimInstance()->GetCurveValue("Curve");

If Mesh refers to the skeletal mesh component in the character class, I believe you have to use GetMesh() to access it.

Z1 = GetMesh()->GetAnimInstance()->GetCurveValue("Curve");

References :

2 Likes

Thanks, you saved me. You are a true genius.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.