Revision Difference
CRecipientFilter:AddPVS#514183
<function name="AddPVS" parent="CRecipientFilter" type="classfunc">⤶
<description>Adds all players that are in the same PVS as this position.</description>⤶
<realm>Server</realm>⤶
<args>⤶
<arg name="Position" type="Vector">PVS position.</arg>⤶
</args>⤶
</function>⤶
⤶
<example>⤶
<description>Adds players that are visible from the origin of the map to a recipient filter, then sends them a message.</description>⤶
<code>⤶
function SendMessage()⤶
local filter = RecipientFilter()⤶
filter:AddPVS( Vector( 0, 0, 0 ) )⤶
umsg.Start( "message", filter )⤶
umsg.End()⤶
end⤶
</code>⤶
<output>Sends a usermessage to every player visible from 0,0,0</output>⤶
⤶
</example>