SDSERG
(SDSERG)
1
Hello. I have some error when I try to override event from base class. Where are I’m wrong?
Exampple:
Base Class
virtual void EvenetName();
Child Class
virtual void EvenetName() override;
As a result I have next message:
method with override specifier ‘override’ did not override any base class methods
Thanck you.
EvilCleric
(EvilCleric)
2
What type of event are you talking about? BlueprintNativeEvent? How are you triggering them?
SDSERG
(SDSERG)
3
Yes, exactly this type of event. But I tried to use both of types as BlueprintImplementableEvent as BlueprintNativeEvent. But nothing.
EvilCleric
(EvilCleric)
4
If it’s a BlueprintNativeEvent, then you must override
virtual void EvenetName_Implementation() override;
not* EvenetName()* in the child class.
SDSERG
(SDSERG)
5
Thank you very much. It is helped. I just had to add “_Implementation” in definition part of event.