I have a plugin, which contains a component, which inherits from UActorComponent. Below is a small snippet of the code:
MyComponent.h
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "MyComponent.Generated.h"
UCLASS(ClassGroup = (Custom), meta = (BlueprintSpawnableComponent))
class MYMODULE_API UMyComponent : public UActorComponent
{
...
virtual void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override;
...
}
When I try to package my plugin (either using CLI or through UE), I get the following errors:
error C3668: PostEditChangeProperty: method with override specifier ‘override’ did not override any base class methods
error C2039: ‘PostEditChangeProperty’: is not a member of ‘UActorComponent’
Any help would be appreciated!