Func healthcharger

From Valve Developer Community
Revision as of 15:42, 18 June 2011 by Barracuda (talk | contribs) (Cleanup)
Jump to navigation Jump to search

Template:Hl2 brush

Entity Description

A brush entity wall health recharger (as opposed to a model-based item_healthcharger). It has no name, and not even half of the Inputs and Outputs func_recharge is capable off, for whatever reason. However, it can be given a targetname by manually adding it in with SmartEdit turned off.

Availability

Template:In game Template:Game Template:In code

Keyvalues

Minimum light level ([todo internal name (i)]) <string>
Parentname:
Parent (parentname) <targetname>
Specifies a movement parent. An entity will maintain its initial offset from its parent. An attachment point can be added to the end of the name, separated by a comma.
Start Disabled (StartDisabled) <boolean>
Stay dormant until activated (with theEnableinput).

Origin:

Origin (X Y Z) (origin) <origin>
The position of this entity's center in the world. Rotating entities typically rotate around their origin.
Global:
Global Entity Name (globalname) <string>
Name by which this entity is linked to another entity in a different map. When the player transitions to a new map, entities in the new map with globalnames matching entities in the previous map will have the previous map's state copied over their state.

Inputs

Parentname:
SetParent <stringRedirectInput/string>
Move with this entity. See Entity Hierarchy (parenting).
SetParentAttachment <stringRedirectInput/string>
Change this entity to attach to a specific attachment point on its parent. The entity will teleport so that the position of its root bone matches that of the attachment. Entities must be parented before being sent this input.
SetParentAttachmentMaintainOffset <stringRedirectInput/string>
As above, but without teleporting. The entity retains its position relative to the attachment at the time of the input being received.
ClearParent
Removes this entity from the the movement hierarchy, leaving it free to move independently.

EnableDisable:

Enable / Disable
Enable/disable this entity from performing its task. It might also disappear from view.

Outputs

OutRemainingHealth <floatRedirectInput/float>
Remaining Health.
OnPlayerUse
Fired when the player +USEs the charger.

Template:No targetname