I was messing about trying to do the final challenge and I realised that I couldn’t call OpenDoor() from inside BeginPlay(). The reason for this seemed to be that i had no way of passing in DeltaTime.
Does every function that uses DeltaTime as a parameter have to be called from inside TickComponent()?
Are there other ways to access DeltaTime? I’m sure there must be some cases when a function that uses DeltaTime wants to be called from inside BeginPlay().