1. @override
void initialize(World world)

Called when the actor is instantiated in the world

Source

@override
void initialize(World world)
{
    super.initialize(world);
    this.name = "Pawn" + world.genUID();
    this.isCircleCollider = true;
    this._currentTargetLocation = this.location.clone();
}