Curve Tables in C+++

I’m trying to figure out how to evaluate a row at a time on a curve table. I’m slowly teaching myself c++ so, eli5. The curve table created and usable in blueprints, I just don’t know the functions or ways to use it in c++. So far I have in my header
UPROPERTY(EditAnywhere)
UCurveTable* TheNameOfTheCurve;
To make it more direct. I want to find a row in the curve “Row A” and at a time of “Variable A”.

If you want to evaluate specific row, it’s better to use FCurveTableRowHandle, for example:

FCurveTableRowHandle NameOfTheRow;

And then, if you want to evaluate one of the rows just go with the Eval method

NameOfTheRow.Eval(1,NameOfTheRow.RowName.ToString())

Instead of 1 - you can put whatever number you want to extract the value from, also you can use variable here

Hope That Helps :slight_smile: