OnPlayerStreamIn: Difference between revisions
From Onset Developer Wiki
No edit summary |
mNo edit summary |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{Info|Event|Server|1.0}} | {{Info|Event|Server & Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Called when another user is streamed in (rendered) for the player.}} | ||
{{FuncSyntax|OnPlayerStreamIn(player, otherplayer)}} | {{FuncSyntax|OnPlayerStreamIn(player, otherplayer)}} | ||
{{FuncSyntaxClient|OnPlayerStreamIn(otherplayer)}} | |||
{{FuncParameters}} | {{FuncParameters}} | ||
Line 10: | Line 11: | ||
== Example == | == Example == | ||
'''A barebones example of syncing player clothing presets:''' | |||
<syntaxhighlight lang="Lua> | |||
function OnPlayerStreamIn(player) | |||
-- Assuming `_modelPreset` is the player's clothing preset id, | |||
-- set their clothing so the client doesn't see them naked. | |||
local _modelPreset = GetPlayerPropertyValue(player, "_modelPreset") | |||
if (_modelPreset ~= nil and _modelPreset > 0) then | |||
SetPlayerClothingPreset(player, _modelPreset) | |||
end | |||
end | |||
AddEvent("OnPlayerStreamIn", OnPlayerStreamIn) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{ | {{PlayerEvents}} |
Latest revision as of 08:04, 16 January 2020
Description
Called when another user is streamed in (rendered) for the player.
Syntax
OnPlayerStreamIn(player, otherplayer)
Client Syntax
OnPlayerStreamIn(otherplayer)
Parameters
- player
The player for the other player is streamed in. - otherplayer
The player that streams in for player.
Example
A barebones example of syncing player clothing presets:
function OnPlayerStreamIn(player)
-- Assuming `_modelPreset` is the player's clothing preset id,
-- set their clothing so the client doesn't see them naked.
local _modelPreset = GetPlayerPropertyValue(player, "_modelPreset")
if (_modelPreset ~= nil and _modelPreset > 0) then
SetPlayerClothingPreset(player, _modelPreset)
end
end
AddEvent("OnPlayerStreamIn", OnPlayerStreamIn)
See also
- OnPlayerServerAuth
- OnPlayerSteamAuth
- OnPlayerStreamIn
- OnPlayerStreamOut
- OnPlayerJoin
- OnPlayerQuit
- OnPlayerSpawn
- OnPlayerDeath
- OnPlayerWeaponShot
- OnPlayerDamage
- OnPlayerChat
- OnPlayerChatCommand
- OnPlayerInteractDoor
- OnPlayWeaponHitEffects
- OnPlayerSwitchCamera
- OnPlayerEnterWater
- OnPlayerLeaveWater
- OnPlayerCrouch
- OnPlayerEndCrouch
- OnPlayerEndFall
- OnPlayerFall
- OnPlayerTalking