info_player_axis

From Valve Developer Community
Jump to navigation Jump to search
Class hierarchy
CSpawnPoint
CPointEntity
CBaseEntity
dod_gamerules.h

info_player_axis is a point entity available in Day of Defeat: Source Day of Defeat: Source.

Creates a spawn point for an Axis soldier. A standard map should have between 16 and 32 spawn points. Should be placed at least 128 units away from each other and surrounding walls, and at least 16 units above the ground.

Icon-Important.pngImportant:This is a preserved entity in Day of Defeat: Source.
  • On a new round entities with this classname will intentionally not reset. You can use logic_auto to emulate resetting it.
  • Killing it removes it forever, as it is not respawned on a new round.
  • It cannot be spawned with a point_template.
  • Parenting this with non preserved entities may have undesirable effects.

Key Values

Pitch Yaw Roll (Y Z X) (angles) <angle>
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.
Name (targetname) <string>
The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g. parentname or target).
Also displayed in Hammer's 2D views and Entity Report.
See also:  Generic Keyvalues, Inputs and Outputs available to all entities

Start Disabled (StartDisabled) <boolean>
Stay dormant until activated (with theEnableinput).

Inputs

EnableDisable:

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

See also