|
| | DEFINE_LOG_CATEGORY (LogCurveTable) |
| |
| | DECLARE_CYCLE_STAT (TEXT("CurveTableRowHandle Eval"), STAT_CurveTableRowHandleEval, STATGROUP_Engine) |
| |
| template<class T > |
| void | GetTableAsString_Internal (const TMap< FName, T * > &RowMap, FString &Result) |
| |
| template<class T > |
| void | GetTableAsCSV_Internal (const TMap< FName, T * > &RowMap, FString &Result) |
| |
| template<typename CharType , class T > |
| void | WriteTableAsJSON_Internal (const TMap< FName, T * > &RowMap, const TSharedRef< TJsonWriter< CharType, TPrettyJsonPrintPolicy< CharType > > > &JsonWriter, bool bAsArray) |
| |
| void | GetCurveValues (const TArray< const TCHAR * > &Cells, TArray< float > &Values) |
| |
| bool | FindDuplicateXValues (const TArray< float > &XValues, const FString &ContextString, TArray< FString > &OutProblems) |
| |
| template<class CurveType > |
| void | CopySharedInterpolationMode (const CurveType *SourceCurve, CurveType *TargetCurve) |
| |
| template<> |
| void | CopySharedInterpolationMode< FSimpleCurve > (const FSimpleCurve *SourceCurve, FSimpleCurve *TargetCurve) |
| |
| template<class CurveType , class CurveKeyType > |
| void | CopyRowsToTable (const TMap< FName, CurveType * > &SourceRows, TMap< FName, FRealCurve * > &RowMap, TArray< FString > &OutProblems) |
| |