StrategyMap_NavHelpUpdated

Tracking Issue: #932

Tags: ui, events

This event is fired after the base game has performed its own updates to the nav help on the Geoscape (StrategyMap), allowing mods to make further changes if they wish.

StrategyMap_NavHelpUpdated event

Param Value
EventID StrategyMap_NavHelpUpdated
EventData UINavigationHelp
EventSource UIStrategyMap
NewGameState none

Listener template

static function EventListenerReturn OnStrategyMap_NavHelpUpdated(Object EventData, Object EventSource, XComGameState GameState, Name EventID, Object CallbackObject)
{
    local UIStrategyMap StrategyMap;

    StrategyMap = UIStrategyMap(EventSource);

    // Your code here

    return ELR_NoInterrupt;
}

Source code references