I’m on 4.25.0 release from source, trying to build a new project with the most recent “April Tools” version of HammUEr gives me this error:
/Plugins/HammUEr/Source/HammUEr/Private/SHammerTextUErWidget.cpp(2766):
error C2664: 'bool IImageWrapper::GetRaw(const ERGBFormat,int32,TArray<uint8,FDefaultAllocator> &)':
cannot convert argument 3 from 'const TArray<uint8,FDefaultAllocator> *' to 'TArray<uint8,FDefaultAllocator64> &'
It’s also complaining: “no instance of overloaded function that matches the argument list” which is just a restatement of the error.
SHammerTextUErWidget.cpp line 2765-2767:
const TArray<uint8>* uncompressedRGBA;
if (imageWrapperToUse->GetRaw(ERGBFormat::RGBA, 8, uncompressedRGBA))
{
Is anyone else running this plugin on UE compiled from release source? Does this error not occur running UE4.24 from source? It doesn’t seem like something caused by an UE version change