When declaring this statement:
GetWorld()->GetTimerManager().SetTimer(MemberHandleTimer, this, &AFasterSpeedBonus::SpeedBonus, 3.0f, true);
I get an error (shown in the picture). What am I doing wrong?
Maybe the problem is with the *SpeedBonus *function.
Is it a UFUNCTION()?
Return type? Is it void?
Does it have arguments?
Yes, the error was related to the SpeedBonus function.
Have you fixed it? Propaby SpeedBonus takes arguments which you have to add. For adding those arguments use timer delegate object.