Func rotating: Difference between revisions
Jump to navigation
Jump to search
Note:This entity behaves strangely in TF2. If you parent an entity to a func_rotating it will not work.
(Cleanup) |
|||
Line 1: | Line 1: | ||
{{ | {{base brush|func_rotating}} It is used to create rotating brushes. | ||
{{note|This entity behaves strangely in TF2. If you parent an entity to a func_rotating it will not work.}} | |||
{{ | == Keyvalues == | ||
{{KV|Max Rotation Speed|integer|The maximum rotation speed of the brushes, in degrees per second.}} | |||
{{KV|Friction (0 - 100%)|integer|The amount of rotational friction. Value must be between 0 and 100 %.}} | |||
{{KV|Rotating sound WAV|sound|Sound to play while rotating.}} | |||
{{KV|Volume (10 {{=}} loudest)|integer|The volume of the rotation sound.}} | |||
{{KV|Minimum Light Level|string|The minimum level of ambient light that hits this brush.}} | |||
{{KV|Blocking Damage|integer|Damage done to any entity that blocks the rotation, per frame.}} | |||
{{KV|Solid Type|choices|Brush solidity type}} | |||
:* 0 : VPhysics | |||
:* 1 : BSP | |||
{{KV Targetname}} | |||
{{KV Parentname}} | |||
{{KV Origin}} | |||
{{KV Angles}} | |||
{{KV RenderFields}} | |||
{{KV Shadow}} | |||
== | == Flags == | ||
* | * 1 : Start ON | ||
* | * 2 : Reverse Direction | ||
* | * 4 : X Axis | ||
* | * 8 : Y Axis | ||
* | * 16 : Acc/Dcc | ||
* | * 32 : Fan Pain | ||
* 64 : Not Solid | |||
* 128 : Small Sound Radius | |||
: | * 256 : Medium Sound Radius | ||
* | * 512 : Large Sound Radius | ||
: | |||
* | |||
:Sound | |||
* | |||
: | |||
* | |||
: | |||
== | == Inputs == | ||
{{IO|SetSpeed|Set the speed as a ratio of the specified Max Rotation Speed, where 0 is stopped and 1 is the Max Rotation Speed..|param=integer}} | |||
{{IO|Start|Start the rotator rotating.}} | |||
{{IO|Stop|Stop the rotator from rotating.}} | |||
{{IO|StopAtStartPos|<code>Stop</code> the rotator from rotating when it gets around to the start position again (on its rotation axis).}} | |||
{{IO|StartForward|Start the rotator rotating forward.}} | |||
{{IO|StartBackward|Start the rotator rotating backward.}} | |||
{{IO|Toggle|Toggle the rotator between rotating and not rotating.}} | |||
{{IO|Reverse|Reverse the direction of rotation of the rotator.}} | |||
{{I Targetname}} | |||
{{I Parentname}} | |||
{{I RenderFields}} | |||
{{I Shadow}} | |||
== Outputs == | |||
{{O Targetname}} | |||
==Outputs== | |||
Revision as of 09:53, 25 July 2011
Template:Base brush It is used to create rotating brushes.

Keyvalues
- Max Rotation Speed ([todo internal name (i)]) <integer>
- The maximum rotation speed of the brushes, in degrees per second.
- Friction (0 - 100%) ([todo internal name (i)]) <integer>
- The amount of rotational friction. Value must be between 0 and 100 %.
- Minimum Light Level ([todo internal name (i)]) <string>
- The minimum level of ambient light that hits this brush.
- Blocking Damage ([todo internal name (i)]) <integer>
- Damage done to any entity that blocks the rotation, per frame.
- Solid Type ([todo internal name (i)]) <choices>
- Brush solidity type
- 0 : VPhysics
- 1 : BSP
- 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
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.
- Pitch Yaw Roll (Y Z X) (angles) <QAngle>
- This entity's orientation in the world. Pitch is rotation around the Y axis, yaw is the rotation around the Z axis, roll is the rotation around the X axis.
RenderFields:
- Render Mode (rendermode) <byte choices>
- Set a non-standard rendering mode on this entity.
Render Modes
- Render FX (renderfx) <byte choices>
- Various somewhat legacy alpha effects. See render effects.
- Render Amount / Transparency (renderamt) <byte>
- 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.
Shadow:
- Disable Shadows (disableshadows) <boolean>
- Prevents the entity from creating cheap render-to-texture shadows, or lightmap shadows if the entity is a prop_static. Does not affect shadow mapping.
- Disable Receiving Shadows (disablereceiveshadows) <boolean>
- Prevent the entity from receiving dynamic shadows on itself.
- Shadow Cast Distance (shadowcastdist) <integer> !FGD
- Sets how far the entity casts dynamic shadows. 0 means default distance from the shadow_control entity.
- Disable Shadow Depth (disableshadowdepth) <boolean> (in all games since
)
- Used to disable rendering into shadow depth (for projected textures) for this entity.
- Disable flashlight (disableflashlight) <boolean> (in all games since
)
- Used to disable projected texture lighting and shadows on this entity.
- Projected Texture Cache (shadowdepthnocache) <integer choices> (in all games since
)
- Used to hint projected texture system whether it is sufficient to cache shadow volume of this entity or to force render it every frame instead.
Choices - 0 : Default
- 1 : No cache - render every frame
- 2 : Cache it - render only once
Flags
- 1 : Start ON
- 2 : Reverse Direction
- 4 : X Axis
- 8 : Y Axis
- 16 : Acc/Dcc
- 32 : Fan Pain
- 64 : Not Solid
- 128 : Small Sound Radius
- 256 : Medium Sound Radius
- 512 : Large Sound Radius
Inputs
- SetSpeed <integer >
- Set the speed as a ratio of the specified Max Rotation Speed, where 0 is stopped and 1 is the Max Rotation Speed..
- Start
- Start the rotator rotating.
- Stop
- Stop the rotator from rotating.
- StopAtStartPos
Stop
the rotator from rotating when it gets around to the start position again (on its rotation axis).
- StartForward
- Start the rotator rotating forward.
- StartBackward
- Start the rotator rotating backward.
- Toggle
- Toggle the rotator between rotating and not rotating.
- Reverse
- Reverse the direction of rotation of the rotator.
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.
Shadow:
- DisableShadow
- Turn dynamic shadows off for this entity. Identical to applying EF_NOSHADOW.
- EnableShadow
- Turn dynamic shadows on for this entity.
- DisableReceivingFlashlight (in all games since
)
- This object will not receive light or shadows from projected textures.
- EnableReceivingFlashlight (in all games since
)
- This object may receive light or shadows from projected textures.