1. Class Inherit UE에서 부모클래스로부터 가상함수를 상속받아 override할 때 UFUNCTION() 매크로를 빼야 정상 작동한다 class STUDYUE_API AWeapon : public AItems { GENERATED_BODY() protected: //AItem의 virtual 함수를 override 할 때 UFUNCTION()매크로를 뺌 virtualvoid OnSphereOverlap(UPrimitiveComponent* OverlappedComponent, AActor* OtherActor, UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const FHitResult& SweepResult) ..