I am getting an error that UKismetTextLibrary is deprecated but it doesn’t appear to show on the documentation?
Code:
if (TextInput)
{
TextInput->SetIsEnabled(bEnableInput);
TextInput->SetText(UKismetTextLibrary::Conv_FloatToText(
FilterValue(Value),
HalfToEven,
false,
true,
1,
324,
0,
2
));
}
Error:
warning C4996: 'UKismetTextLibrary::Conv_FloatToText': This method has been deprecated and will be removed. Please update your code to the new API before upgrading to the next release, otherwise your project will no longer compile.
I don’t see any documentation saying its deprecated? 5.2 Documentation: UKismetTextLibrary 5.2 Documentation
I am very amateur in C++ and just trying to upgrade an old plugin.
Any advice would be appreciated! Thank you!