Rearrange FormatDataLibrary to have less module coupling.
This commit is contained in:
@@ -62,3 +62,12 @@ FlxMovementComponentState UlxMovementComponentStateLibrary::SetFakeMovementCompo
|
||||
}
|
||||
return State;
|
||||
}
|
||||
|
||||
FFormatArgumentData UlxMovementComponentStateLibrary::FormatArgumentDataMovementComponentState(const FlxMovementComponentState &AutoConvertedValue, const FString &Name)
|
||||
{
|
||||
FFormatArgumentData Result;
|
||||
Result.ArgumentValueType = EFormatArgumentType::Text;
|
||||
Result.ArgumentName = Name;
|
||||
Result.ArgumentValue = FText::FromString(DebugString(AutoConvertedValue));
|
||||
return Result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user