GetSupportedMapsForGameMode() 공개 정적인 메소드

returns a list of the class names of all maps that support the given game mode
public static GetSupportedMapsForGameMode ( IGameMode gameMode ) : IEnumerable
gameMode IGameMode
리턴 IEnumerable
예제 #1
0
 private void updateMapList(string gameModeName)
 {
     mapList = GameModeManager.GetSupportedMapsForGameMode(gameModeName).ToArray();
     humanReadableMapList = mapList.Select(s => GameModeManager.GetHumanReadableNameForMap(s)).ToArray();
     selectedMap          = 0;
 }