func_movelinear
< Ru
func_movelinear
- это брашевая энтити , доступно для всех игр на движке Source.
Описание Энтити
Она двигается по заданной линии на заданную дистанцию. В отличии от func_door , может изначально располагаться в любом месте по своей оси перемещения.
Примечание:Эту энтитю также можно назвать momentary_door. Такое имя для неё используется в GoldSource.
Примечание:Вход SetPosition и значение Start Position не проверяют границу, так что могут быть использованы значения от 1 до 0. Отрицательные значения заставят энтити двигаться в сторону, противоположную заданной, значения больше 1 заставят их двигаться в n-нное количество раз дальше, чем значение Moving Distance. В данном случае, движение энтити через изначальные крайние точки не будет вызывать выводы OnFullyOpen/Closed
Предупреждение:Присутствуют ошибки с прикреплением этой энтити к другой func_movelinear. В качестве обходного пути, можно использовать Func_door. Исправление находится в CFuncMoveLinear_ParentingFix
Параметры
- Move Direction (Pitch Yaw Roll)
([todo internal name (i)])
<angle > - Направление, в котором будет двигаться браш.
- Start Position
([todo internal name (i)])
<float > - Позиция браша при спавне, где 0 это начальная позиция, а 1 это starting position + (move direction * move distance).
- Speed
([todo internal name (i)])
<integer > - Скорость движения браша в дюймах (Хаммер-юнитах?) в секунду.
- Move Distance
([todo internal name (i)])
<float > - Дистанция, на которую будет двигаться браш, в дюймах (Хаммер-юнитах?).
- Block Damage
([todo internal name (i)])
<float > - Урон, который будет нанесен всем энтити, которые блокируют движение, за тик.
- Sound played when the brush starts moving.
([todo internal name (i)])
<sound > - Звук, проигрываемый при начале движения браша.
- Sound played when the brush stops moving.
([todo internal name (i)])
<sound > - Звук, проигрываемый при окончании движения браша.
См. также: Generic Keyvalues, Inputs and Outputs available to all entities
- Name
(targetname)
<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.
Origin:
- Origin (X Y Z)
(origin)
<origin > - The position of this entity's center in the world. Rotating entities typically rotate around their origin.
RenderFields:
- Render Mode
(rendermode)
<choices> - Set a non-standard rendering mode on this entity.
- Render FX
(renderfx)
<choices> - Various somewhat legacy alpha effects. See render effects
- Render Amount / Transparency
(renderamt)
<integer 0–255> - Transparency amount, requires a Render Mode other than Normal. 0 is invisible, 255 is fully visible.
- Render Color (R G B)
(rendercolor)
<color255 > - Color tint.
- Disable Receiving Shadows
(disablereceiveshadows)
<boolean > - Prevent the entity from receiving shadows on itself.
Флаги
- 1 : Not Solid - Включает или отключает колизию энтити.
Входы
Open
- Начать движение браша в конечную позицию (starting position + (move direction * move distance)).
Close
- Начать движение браша в начальную позицию.
SetPosition
<string >- Сдвинуть браш в позицию, где 0 это начальная позиция и 1 это starting position + (move direction * move distance).
SetSpeed
<float >- Установить скорость браша (Применяется мгновенно).
Parentname:
SetParent
<string >- Move with this entity. See Entity Hierarchy (parenting).
SetParentAttachment
<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
<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.
RenderFields:
Alpha
<integer 0–255>- Sets the entity's transparency to a number from 0 (invisible) to 255 (fully visible). Requires the entity to have its
rendermode
set to a number other than0
.
Color
<color255 >- Sets an RGB color for the entity.
Выходы
OnFullyOpen
- Вызывается, когда браш достигает конечной позиции (starting position + (move direction * move distance)).
OnFullyClosed
- Вызывается, когда браш достигает начальной позиции.