OnPhoneCallStarted
Usage
- No return behavior
Example Autogenerated
csharp
private void OnPhoneCallStarted( PhoneController instance, PhoneController activeCallTo, BasePlayer currentPlayer )
{
Puts( "OnPhoneCallStarted works!" );
}Location
- PhoneController::BeginCall()
csharp
//---
{
_ = currentPlayer != null;
}
SetPhoneStateWithPlayer(Telephone.CallState.InProcess);
Invoke(TimeOutCall, TelephoneManager.MaxCallLength);
Interface.CallHook("OnPhoneCallStarted", this, activeCallTo, currentPlayer);
}
}