Skip to content

Instantly share code, notes, and snippets.

@sugi-cho
Created July 16, 2015 18:54
Show Gist options
  • Save sugi-cho/f1af12545c51273238f0 to your computer and use it in GitHub Desktop.
Save sugi-cho/f1af12545c51273238f0 to your computer and use it in GitHub Desktop.
using UnityEngine;
using UnityEngine.Networking;
public class MyNetManager:NetworkManager{
public override void OnStartClient(NetworkClient client){
base.OnStartClient(client);
//処理
}
public override void OnClientConnect(NetworkConnection conn){
//.....
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment