trigger_softbarrier
trigger_softbarrier
is a brush entity available in Counter-Strike: Global Offensive.
Entity description
It is a trigger volume that softly slows player velocity in a given direction. This entity was first added in the map de_canals to alert the player that they are reaching a clipped-off area. Unlike trigger_push, you cannot indicate the strength of the 'pusheffect'. You can, however, filter it.
Keyvalues
- Push Direction (Pitch Yaw Roll)
([todo internal name (i)])
<angle> - Angles indicating the direction to slow player velocity.
|
- Name
(targetname)
<string> - The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g.
parentname
ortarget
).
Also displayed in Hammer's 2D views and Entity Report.See also: Generic Keyvalues, Inputs and Outputs available to all entities
Flags
- 128 : Once Only (possibly means set velocity rather than apply acceleration)
- 256 : Affects Ladders (Half-Life 2)
Everything (not including physics debris) Clients (Survivors, Special Infected, Tanks ) : [32] : [512] : [4096] NPCs (Common Infected, Witches ) : [16] : [2048] Physics Objects (not including physics debris) : [1024]
|
Inputs
SetPushDirection
<vector>- Sets the angles indicating the direction to slow player velocity.
|
Outputs
Bug:Spamming crouch jumps in a trigger can randomly fire OnStartTouch . Confirm:Is it a Multiplayer issue only? [todo tested in?]
Warning:This includes entities which are deleted while inside the trigger. In this case !activator will be invalid.
Warning:
OnEndTouch can fire before OnStartTouch under certain circumstances where both are fired on the same tick and each have the same delay. Fix:Add a slight delay to OnEndTouch .Bug:Spamming crouch jump in a trigger can randomly fire OnEndTouch . Confirm:Is it a Multiplayer issue only? [todo tested in?]
|