示例#1
0
            public bool MovePlayerToTeamLocation(BasePlayer player, Vector3 location)
            {
                IemUtils.GLog("moving players to game");

                if (!IemUtils.CheckPointNearToLocation(
                        player.transform.position, location, 2))
                {
                    IemUtils.TeleportPlayerPosition(player, location);
                }

                return(true);
            }