generic_actor
Jump to navigation
Jump to search
generic_actor
is a point entity available in all Source games except Left 4 Dead series. It is a generic NPC purely made for scripted sequence work.
Note:Some keyvalues, spawnflags, effect flags, inputs, or outputs might not affect an NPC, based on the functionality and coding of the NPC.
Note:This npc's max health is 8. If you're a mapper and want to increase the health, you can do an AddOutput with max_health "Amount Of Health", and then a SetHealth input after that. Otherwise you should implement a ConVar for their health like other NPCs.
Bug:In newer engine versions after Alien Swarm, this NPC will appear to "lag" when walking or running.
Confirm:Does this bug also affect monster_generic?
[todo tested in?]Keyvalues
- Model (model) <model path>
- Model of the generic_actor
- Hull type (hull_name) <choices>
- Physical size of the actor. Affects navigation capabilities and hitboxes.[confirm]
- HUMAN_HULL: Human
- WIDE_HUMAN_HULL: Wide
- TINY_HULL: Tiny
- MEDIUM_HULL: Medium
- LARGE_HULL: Large
CBaseCombatCharacter:
CAI_BaseNPC:
DamageFilter:
|
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.
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.
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.
|
Flags
Wait Till Seen : [1]
Gag : [2]
Fall to ground (unchecked means teleport to ground) : [4]
Efficient : [16]
Wait For Script : [128]
Long Visibility/Shoot : [256]
Fade Corpse : [512]
Template NPC : [2048]
Note:This flag is disabled in episodic for player companions, because the
StartScripting input does this.Don't drop weapons : [8192]
|
Inputs
CAI_BaseNPC:
CBaseCombatCharacter:
DamageFilter: |
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.
Outputs
|