Actor Component will not tick

Remove this from the constructor:



this->SetComponentTickEnabled(true);


And add this:



PrimaryComponentTick.bCanEverTick = true;
PrimaryComponentTick.bStartWithTickEnabled = true;


4 Likes