# Set Victory Panel Summary Background Image
Grammar — Set the summary background image of the victory panel to filePath
Flags —Native|Action
Sets the background image of the summary section of the victory panel.
# Arguments
string<filepath> — File Path
Returns — void
native void VictoryPanelSetSummaryBackgroundFilePath(
string inFilePath,
);
# Related
Category: Story / Victory Panel
- Victory Panel Play Mission Again —
void— TriggerAddEventVictoryPanelPlayMissionAgain - Victory Panel Exited —
void— TriggerAddEventVictoryPanelExit - Selected Victory Difficulty —
int<difficulty> — EventVictoryPanelDifficultySelected - Set Victory Panel Victory Text —
void— VictoryPanelSetVictoryText - Set Victory Panel Mission Title —
void— VictoryPanelSetMissionTitle - Set Victory Panel Mission Text —
void— VictoryPanelSetMissionText - Set Victory Panel Time Title —
void— VictoryPanelSetMissionTimeTitle - Set Victory Panel Time Text —
void— VictoryPanelSetMissionTimeText - Set Victory Panel Reward Title —
void— VictoryPanelSetRewardTitle - Set Victory Panel Reward Text —
void— VictoryPanelSetRewardText - Set Victory Panel Reward Credits —
void— VictoryPanelSetRewardCredits - Set Victory Panel Achievements Title —
void— VictoryPanelSetAchievementsTitle - Add Victory Panel Achievement —
void— VictoryPanelAddAchievement - Set Victory Panel Statistics Title —
void— VictoryPanelSetStatisticsTitle - Add Victory Panel Tracked Statistic —
void— VictoryPanelAddTrackedStatistic - Enable/Disable All Score Tracking —
void— PlayerScoreValueEnableAll - Enable/Disable Score Tracking —
void— PlayerScoreValueEnable - Add Victory Panel Custom Statistic Line —
void— VictoryPanelAddCustomStatisticLine - Set Victory Panel Custom Statistic Text —
void— VictoryPanelSetCustomStatisticText - Set Victory Panel Custom Statistic Value —
void— VictoryPanelSetCustomStatisticValue - Clear Victory Panel Custom Statistic Table —
void— VictoryPanelClearCustomStatisticTable - Set Victory Panel Background Model —
void— VictoryPanelSetPlanetModelLink - Set Victory Panel Background Image —
void— VictoryPanelSetBackgroundFilePath - Set Victory Panel Summary Background Image —
void— VictoryPanelSetSummaryBackgroundFilePath
# Examples
campaigns/libertystory.sc2campaign — base.sc2data/TriggerLibs/CampaignLib.galaxy:10052
VictoryPanelSetMissionTimeTitle(StringExternal("Param/Value/lib_Camp_E100AD56"));
VictoryPanelSetBackgroundFilePath(libCamp_gf_TS_SetVictoryScreenBackground(lp_mission));
VictoryPanelSetSummaryBackgroundFilePath(libCamp_gf_MissionLoadingScreenImage(lp_mission));
if ((lp_mission == libCamp_ge_MapID_MapTZeratul04)) {
VictoryPanelSetVictoryText(StringExternal("Param/Value/lib_Camp_F0633C82"));
campaigns/voidstory.sc2campaign — base.sc2data/TriggerLibs/VoidCampaignUILib.galaxy:5475
// Implementation
VictoryPanelSetMissionTimeTitle(StringExternal("Param/Value/lib_VCUI_F5A56375"));
VictoryPanelSetSummaryBackgroundFilePath("Assets\\Textures\\ui_void_loading_epilogue02.dds");
VictoryPanelSetVictoryText(StringExternal("Param/Value/lib_VCUI_D687F260"));
VictoryPanelSetMissionTimeText(libVoiC_gf_FormatTimeCampaign(libVCMI_gv_pM_MissionCompleteTime));