# Set Ping Use Player Vision
Grammar — Set ping flag Use Player Vision to usePlayerVision
Flags —Native|Action
Sets whether or not the ping should use the vision of the local player at the point it exists when determining if it*“s visible or not. This allows pings that aren”*t attached to units to easily be hidden when beneath the fog of war.
# Arguments
int<ping> — Pingbool— Use Player Vision
Returns — void
native void PingSetUsePlayerVision(
int p,
bool usePlayerVision,
);
# Related
Category: Ping / Advanced
- Move Ping —
void— PingSetPosition - Make Ping Face Angle —
void— PingSetRotation - Attach Ping To Unit —
void— PingSetUnit - Position Of Ping —
point— PingGetPosition - Facing Angle Of Ping —
fixed— PingGetRotation - Ping Unit —
unit— PingGetUnit - Set Ping Scale —
void— PingSetScale - Set Ping Depth —
void— PingSetDepth - Set Ping Tooltip —
void— PingSetTooltip - Set Ping Color —
void— PingSetColor - Set Ping Duration —
void— PingSetDuration - Set Ping Model —
void— PingSetModel - Set Ping Players —
void— PingSetPlayerGroup - Set Ping Use Unit Team Color —
void— PingSetUseUnitTeamColor - Set Ping Use Unit Visibility —
void— PingSetUseUnitVisibility - Set Ping Observer Display —
void— PingSetObserver - Set Ping Use Player Vision —
void— PingSetUsePlayerVision - Destroy Ping —
void— PingDestroy - Destroy All Pings —
void— PingDestroyAll - Ping Scale —
fixed— PingGetScale - Ping Depth —
fixed— PingGetDepth - Ping Tooltip —
text— PingGetTooltip - Color Of Ping —
color— PingGetColor - Duration of Ping —
fixed— PingGetDuration - Ping Players —
playergroup— PingGetPlayerGroup
# Examples
mods/starcoop/starcoop.sc2mod — base.sc2data/LibCOMI.galaxy:499
libNtve_gf_CreatePingFacingAngle(lp_players, lp_model, lp_position, lp_color, lp_duration, lp_angle);
if (((libCOMU_gf_MutatorIsEnabled("BlackFog") == true) || (libCOMU_gf_MutatorIsEnabled("UberDarkness") == true))) {
PingSetUsePlayerVision(PingLastCreated(), true);
}
mods/starcoop/starcoop.sc2mod — base.sc2data/LibCOMI.galaxy:509
PingCreateWithPlayerId(lp_players, lp_model, lp_position, lp_color, lp_duration, lp_playerId);
if (((libCOMU_gf_MutatorIsEnabled("BlackFog") == true) || (libCOMU_gf_MutatorIsEnabled("UberDarkness") == true))) {
PingSetUsePlayerVision(PingLastCreated(), true);
}