void Awake()
 {
     if (NetVars.SinglePlayer())
     {
         Application.LoadLevel(sceneToRedirect);
     }
 }
Exemplo n.º 2
0
 void Update()
 {
     if (!NetVars.SinglePlayer())
     {
         currentNick = NetVars.getPlayer(Network.player).nickname;
     }
 }