# Map Name

Grammar — Map name
FlagsNative | Function

Returns the name of the map currently being played.

Returns — text

native text GameMapName();

Category: Game / Game Settings

# Examples

mods/heroesbrawlmods/brawlmapmods/coop/pvebrawluimod.stormmodbase.stormdata/LibPBUI.galaxy:525

    DialogSetVisible(libPBUI_gv_curateHeroSelectionUI.lv_dialog, PlayerGroupAll(), true);
    DialogControlSetVisible(libPBUI_gv_curateHeroSelectionUI.lv_pickHeroPanel, PlayerGroupAll(), true);
    libNtve_gf_SetDialogItemText(libPBUI_gv_curateHeroSelectionUI.lv_titleLabel, GameMapName(), PlayerGroupAll());
    DialogControlSetVisible(libPBUI_gv_curateHeroSelectionUI.lv_countdownLabel, PlayerGroupAll(), true);
    libNtve_gf_SetDialogItemStyle(libPBUI_gv_curateHeroSelectionUI.lv_countdownLabel, "CurateHeroSelection_CountdownLabel", PlayerGroupAll());

mods/heroesbrawlmods/brawlmapmods/coop/pvemod.stormmodbase.stormdata/LibPVEU.galaxy:514

    DialogSetVisible(libPVEU_gv_pvEUICurateHeroSelectionUI.lv_dialog, PlayerGroupAll(), true);
    DialogControlSetVisible(libPVEU_gv_pvEUICurateHeroSelectionUI.lv_pickHeroPanel, PlayerGroupAll(), true);
    libNtve_gf_SetDialogItemText(libPVEU_gv_pvEUICurateHeroSelectionUI.lv_titleLabel, GameMapName(), PlayerGroupAll());
    DialogControlSetVisible(libPVEU_gv_pvEUICurateHeroSelectionUI.lv_countdownLabel, PlayerGroupAll(), true);
    libNtve_gf_SetDialogItemStyle(libPVEU_gv_pvEUICurateHeroSelectionUI.lv_countdownLabel, "CurateHeroSelection_CountdownLabel", PlayerGroupAll());

mods/heroesbrawlmods/brawlmapmods/coop/pvemod.stormmodbase.stormdata/LibPVEU.galaxy:2146

    libPVEU_gv_pvEUITabScreenPanel.lv_pvEUITabScreen_TimeRunSubPanel = DialogControlLastCreated();
    DialogControlHookup(libPVEU_gv_pvEUITabScreenPanel.lv_pvEUITabScreen_TimeRunSubPanel, c_triggerControlTypeLabel, "NameLabel");
    libNtve_gf_SetDialogItemText(DialogControlLastCreated(), GameMapName(), PlayerGroupAll());
    DialogControlHookup(libPVEU_gv_pvEUITabScreenPanel.lv_pvEUITabScreen_TimeRunSubPanel, c_triggerControlTypeLabel, "Time");
    libPVEU_gv_pvEUITabScreenPanel.lv_pvEUITabScreen_CurrentTimeLabel = DialogControlLastCreated();