Hello
So when I made a
UFUNCTION(BlueprintNativeEvent)
void OnPickedUp();
and since it a BlueprintNativeEvent I have to add _Implementation to the OnPickedUp. So I do that then I get a error saying “APickup has no member OnPickedUp_Implementation”
Hello, Mohhamed
To prevent the error, please make sure that you have the following declaration in your header file (beside the one that you’ve mentioned):
void OnPickedUp_Implementation();
After this, implement the function in your .cpp file.
This should do it.
Hope this helped! Good luck!