I often see in Unity networking code examples the use of base.function() as the first instruction within Unity Networking functions.
Example :
public override void OnStartClient() {
base.OnStartClient();
//Do stuff
}
Is this working the same way ?
public override void OnStartClient() {
//Do stuff
}
Is there any real benefits in doing that ? Some people use it, others just don’t. Why ?