BeginPlay() method. What is it?

Can someone explain me waht for is BegnPlay() method. We got constructor so waht for is BeginPlay method?
And from which super class is it starting?

BeginPlay is the last step of the actor spawn process, you can read more about the Actor life cycle here:

BeginPlay() is basically when the Actor is up and running and is in play. It’s useful for gameplay code as chances are there may be no World object ready in the constructor. It’s just part of the wider architecture of UE4.

I don’t quite understand what you’re asking about Super. It’s starts from AActor or UActorComponent.

Hang in there. You’re in for an unreal ride. :slight_smile:

Thank you guys. I totally new about Unreal enviroment. So i am trying to understand everything i can. I got some knowledge about c++ and object programming.
Tanks again for effort.

1 Like