Tick is never being called even though CanEverTick and StartWithTickEnables is true

If you’re overriding BeginPlay, make sure you put Super::BeginPlay() in you’re overridden BeginPlay() function. Also do the same for Tick(DeltaSeconds) with Super::Tick(DeltaSeconds).

It fixed my actor not ticking for me inexplicably.

8 Likes