Esempio n. 1
0
 public void AddPlayerStartPriority(PlayerStartType type, Transform t, string source = "default")
 {
     WebGLComm.inst.Debug("added player start:" + type.ToString() + " from source;" + source);
     if (!playerStarts.ContainsKey(type))
     {
         playerStarts.Add(type, t);
     }
     else
     {
         playerStarts[type] = t;
     }
 }