Trigger soundscape
mike sills australia electricity regulator 37 5 phentermine you should let me love you african american food inventions romans road parables exporter frame moulding picture wooden handbag jacobs marc epoxy floor garage paint wardrobe boxes model nipple slips belly dance costume chromosome 15 cia world factbook video stream broadcast streaming videos automobile racing games refineries naruto episode guide 120 va weather williamsburg play craps online free relocating web la guns site tobey maguire weight problems boards chalk maine outfitters 21 direct download eyeshield skimpy bikini teen domain limescale removal blue cross california camping toilet medical billing cpt code home jewish names eastern europe adoption agency heaven mp3 meet joe black movie quote ghp.georgia.gov stop horse slaughter gynecology medical obstetrics asian pubic hair styles cheddars restaurant recipe destination jamaica care american african skin anti bark collar antenna mobile satellite tv house in fresno posada del inca puno hotel tsic fox migrantes sexenio airflow tailgates radiohead just novelty pool ball italian charm displays sexual offenders in your area car rental orlando foreskin fun lingerie plus size store cantar pools jonathan frakes horny housewives thumbnails awning canopy gazebo tent big blonde breasted mature angel of mine by monica big book breast arthrogryposis picture association automobile california state yamaha atv parts photo store chicago thankyou san antonio map www security companies working in iraq url no go area iraq and map reality fusion game nursing job domain classic sculpture link whyville cheat idaho falls domain hurricane arlene website how to buy gold tsunami song mp3 jones deborah warner stories of children being spanked 90s music list examples of resume writing gas mask buy testosterone custom vehicle parts sealing grout advice Template:Wrongtitle
Entity description
A soundscape trigger.
It is not necessary to create outputs for this trigger, as it will automatically trigger the soundscape referred to by its Soundscape property.
Availability
Template:In game Template:Game-base Template:In code
Keyvalues
- Template:Kv trigger
- soundscape
- <target_source> Soundscape.
Flags
- {| class="mw-collapsible mw-collapsed" style="background:initial;float:no;margin-bottom:1em;margin-left:0;padding-right:0.5em;border:1px solid rgba(255,255,255,0.1); border-left:solid 1px #8bb9e0; padding-left:1em;"
|+ style="text-align:left; white-space:nowrap; font-weight:bold; color:#ddd; " | BaseTrigger |
- Everything (not including physics debris) : [64]
- Only clients in vehicles : [32]
- Only clients *not* in vehicles : [512]
- Only player ally NPCs : [16]
- Only NPCs in vehicles (respects player ally flag) : [2048]
- Physics Objects (not including physics debris) : [8]
- Physics debris (include also physics debris) : [1024]
Pushables (Passes entities with classname func_pushable) : [4]- Deprecated.
Equivalent to using Everything + filter_activator_class that filtersfunc_pushable
.
|}
Inputs
- {| class="mw-collapsible mw-collapsed" style="background:initial;float:no;margin-bottom:1em;margin-left:0;padding-right:0.5em;border:1px solid rgba(255,255,255,0.1); border-left:solid 1px #8bb9e0; padding-left:1em;"
|+ style="text-align:left; white-space:nowrap; font-weight:bold; color:#ddd; " | BaseTrigger |
- Toggle
- Toggles this trigger between enabled and disabled states.
- Enable
- Enable trigger
- Disable
- Disable trigger
- TouchTest (in all games since
)
- Triggers either the OnTouching or OnNotTouching outputs for whether anything is touching this entity.
Bug:Sleeping prop_physics will never fire "OnTouching". Also applies to entities using prop_physics as base. (tested in:
)
- StartTouch (in all games since
) !FGD
- Behave as if the !caller entity had just entered the trigger volume. Accepts non-physical entities.
- DisableAndEndTouch (only in
)
- Disables this trigger and calls EndTouch on all currently-touching entities.
|}
Outputs
- {| class="mw-collapsible mw-collapsed" style="background:initial;float:no;margin-bottom:1em;margin-left:0;padding-right:0.5em;border:1px solid rgba(255,255,255,0.1); border-left:solid 1px #8bb9e0; padding-left:1em;"
|+ style="text-align:left; white-space:nowrap; font-weight:bold; color:#ddd; " | BaseTrigger |
- OnStartTouch
- !activator = entity that caused this output
!caller = this entity
Fired when a valid entity starts touching this trigger.
- OnStartTouchAll
- !activator = entity that caused this output
!caller = this entity
Fired when a valid entity starts touching this trigger, and no other entities are touching it. If there are any other entities touching the trigger when a new one begins to touch, onlyOnStartTouch
will fire.
- OnEndTouch
- !activator = entity that caused this output
!caller = this entity
Fired when a valid entity stops touching this trigger. Note:Will also fire for entities touching it when trigger is disabled via
Disable
inputWarning:This includes entities which are deleted while inside the trigger. In this case !activator will be invalid.
Warning:
OnEndTouch
can fire beforeOnStartTouch
under certain circumstances[How?] where both are fired on the same tick and each have the same delay.Fix:Add a slight delay to
OnEndTouch
.
- OnEndTouchAll
- !activator = entity that caused this output
!caller = this entity
Fired when all valid entities stop touching this trigger.
- OnTouching (in all games since
)
- !activator = !caller = this entity
Fired if something is currently touching this trigger whenTouchTest
is fired.
- OnNotTouching (in all games since
)
- !activator = !caller = this entity
Fired if nothing is currently touching this trigger whenTouchTest
is fired.
|}