Hud timer: Difference between revisions
Jump to navigation
Jump to search
Tip:This is the same HUD element used during the "Waiting for Players" event before level transitions.
Tip:Try to keep the text under ~25 characters to avoid protruding text out of the HUD's frame. (ends will not be visiable)
m (Combined description) |
No edit summary |
||
Line 1: | Line 1: | ||
{{wrongtitle|title=hud_timer}} | |||
{{Synergy}} '''hud_timer''' is a [[point entity]] available in [[Synergy]]. | {{Synergy}} '''hud_timer''' is a [[point entity]] available in [[Synergy]]. | ||
It displays a timer on every player's [[HUD]] | It displays a countdown timer on every player's [[HUD]] and fires an output once reaching zero. | ||
{{tip|This is the same [[HUD]] element used during the "Waiting for Players" event before level transitions.}} | {{tip|This is the same [[HUD]] element used during the "Waiting for Players" event before level transitions.}} | ||
[[Image:Synergy_hud_timer_levelchange.jpg|thumb|right|300px|hud_timer example. '''TimerText''' set to "LEVEL CHANGE"]] | |||
==Keyvalues== | ==Keyvalues== | ||
{{KV|TimerType|choices| | {{KV|TimerType|choices|Keep this set to 'Count Down Timer'(1) Other types not yet supported.}} | ||
{{KV|TimerText|string|Text to display when this timer is visible.}} | {{KV|TimerText|string|Text to display when this timer is visible.}} | ||
{{tip|Try to keep the text under ~25 characters to avoid protruding text out of the HUD's frame. (ends will not be visiable)}} | |||
{{KV Targetname}} | {{KV Targetname}} | ||
==Inputs== | ==Inputs== | ||
{{IO|Start|Start the timer with a specified duration of seconds.|param=int}} | |||
{{IO|Stop|Stop the timer instantly, without triggering the OnTimer output.}} | {{IO|Stop|Stop the timer instantly, without triggering the OnTimer output.}} | ||
{{IO|Change|Update the timer time - value is added to current timer time; allows positive and negative values.|param=int}} | |||
{{I Targetname}} | {{I Targetname}} | ||
Line 23: | Line 22: | ||
==See also== | ==See also== | ||
*[[Synergy_Entities]] | *[[Synergy_Entities|Synergy Entity List]] |
Revision as of 11:11, 7 November 2011
Template:Wrongtitle
hud_timer is a point entity available in Synergy.
It displays a countdown timer on every player's HUD and fires an output once reaching zero.

Keyvalues
- TimerType ([todo internal name (i)]) <choices>
- Keep this set to 'Count Down Timer'(1) Other types not yet supported.

- Name (targetname) <string>[ Edit ]
- 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
Inputs
- Start <integer >
- Start the timer with a specified duration of seconds.
- Stop
- Stop the timer instantly, without triggering the OnTimer output.
- Change <integer >
- Update the timer time - value is added to current timer time; allows positive and negative values.
Outputs
- OnTimer
- Fired when the timer reaches zero.