OnPlayWeaponHitEffects: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Event|Server|1.0}} {{FuncDescription|This event handles visual effects of weapons. The Weapons.lua contains a pre-configured event that shows the same visual hit effec..." |
No edit summary |
||
Line 24: | Line 24: | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
* [[Template:ServerEvents]] |
Revision as of 08:54, 20 December 2019
Description
This event handles visual effects of weapons. The Weapons.lua contains a pre-configured event that shows the same visual hit effects as always. It is called for local and remote players. If it is called for remote players the parameters will contain the synced values from the other client.
Syntax
OnPlayWeaponHitEffects(PlayerId, Weapon, HitType, HitId, StartLocation, HitLocation, HitLocationRelative, HitNormal, HitResult)
Parameters
- PlayerId
The player identifier. - Weapon
The weapon instance. - HitType
https://dev.playonset.com/wiki/HitType - HitId
The identifier of the hit entity. - StartLocation
Trace start location of this bulet/hit. - HitLocation
Trace hit location. - HitLocationRelative
Hit location relative to the entity that was hit. - HitNormal
Bullet impact normal. - HitResult
Line trace result.
Example
AddEvent("OnPlayWeaponHitEffects", funtion (PlayerId, Weapon, HitType, HitId, StartLocation, HitLocation, HitLocationRelative, HitNormal, HitResult)
end)