func_rot_button

From Sven Co-op
Revision as of 05:15, 28 January 2019 by GeckonCZ (talk | contribs) (Corrected conversion issues. Formatting, typos, links etc. Collapsible keyvalues template.)
Jump to navigation Jump to search
func_rot_button
Type

brush

Status

supported

 


A brush entity, which can be triggered by the player by issuing his 'Use'-command on it while standing next to it and looking at it.  This is a rotating variant of the func_button which can be used to create rotating interactable objects like levers or valves. The origin brush is required for this entity, around which func_rot_button rotates.

1 Keyvalues

Target : target

The func_rot_button triggers its target when used or triggered by another entity. You can add 'killtarget' manually.

Locked Sound : locked_sound

Sound to play if the button is pressed while locked.

Unlocked Sound : unlocked_sound

Sound to play if the button is pressed while not locked.

Locked Sentence : locked_sentence

Sentence to be heard if the button is pressed while locked. It is spoken with the voice of Half-Life's Black Mesa announcer.

Unlocked Sentence : unlocked_sentence

Sentence to be heard if the button is pressed while not locked. It is spoken with the voice of Half-Life's Black Mesa announcer.

ChangeTarget Name : changetarget

Non-functional keyvalue. If specified, it supposed to change this func_rot_button's target's "Target" field to the name specified in "ChangeTarget Name" of this func_rot_button.

Master : master

Allows you to specify the name of a multisource entity to lock/unlock this button.

Speed : speed

Speed at which the button rotates (around z axis by default) when pressed, unless 'Don't move' is set. The button rotates counter-clockwise.

Health (shootable if >0) : health

If you enter here value higher than 0, the button becomes shootable only, and can be activated when it's out of health.

Sounds : sounds

The set of sounds for this button to use whenever it's pressed/locked e.t.c.

Delay before reset : wait

When the button is pressed, it will remain in its pressed state for this amount of time. This also affects any toggleable textures on it. If set to '-1', the button can be pressed only once, and will then remain in its pressed state forever. If a multisource entity is among the func_rot_button's targets, that multisource entity will recognize the button's input to be active only for this amount of time.

Distance (deg) : distance

How many degrees the button rotates around it's origin axis (z axis by default). Can be negative.

Locked Sound Override : locked_sound_override

Sound file to use when attempting to open locked entity. Useful when you don't want to use sound from default sound list. This overrides default "Locked Sound" sound.

Unlocked Sound Override : unlocked_sound_override

Sound file to use when entity is unlocked. Useful when you don't want to use sound from default sound list. This overrides default "Locked Sound" sound.

Locked Sentence Override : locked_sentence_override

Sentence from sentences.txt to use when attempting to open locked entity. Useful when you want to override locked sentence with your own sentence.

Unlocked Sentence Override : unlocked_sentence_override

Sentence from sentences.txt to use when entity is unlocked. Useful when you want to override unlocked sentence with your own sentence.

Sound Override : noise

Custom sound, that overrides default sound from "Sounds" list to play when the button is pressed. It will play when the button is locked, too.

Use Type : use_type

Set the use-type with which the button will fire its targets. Default is 'Toggle'.

Item Inventory Rules

2 Flags

1 : Not solid

Turns solidity of this entity off.

2 : Reverse Dir

Reverses the direction of rotation. Only makes sense when "One-way" is selected. The same effect is given by making "Distance" value negative.

32 : Toggle

If set, this func_rot_button will ignore its delay before reset and be toggleable instead, switching between the texture states whenever pressed, if such a texture is assigned on one of its faces. The delay before reset still needs to be greater than zero in order for this to work, though.

64 : X-axis

If set, this will rotate around the x-axis.

128 : Y-axis

If set, this will rotate around the y-axis.

256 : Touch activates

If set, this func_rot_button can be activated by touching it. This disables activating per use-key.

3 Changes

  • 5.0 Steam Release: Added 'Inventory Rules', 'Sound Override', 'Locked Sound Override', 'Unlocked Sound Override', 'Locked Sentence Override' and 'Unlocked Sentence Override' keyvalues.
  • 5.11: Added 'Use Type' keyvalue.