Entity Hierarchy (parenting)

From Valve Developer Community
(Redirected from Parent)
Jump to: navigation, search
English (en)Esperanto (eo)日本語 (ja)русский (ru)中文 (zh)
Edit

When a group of entities are parented together, they form a rigid movement hierarchy family which will move together as if all the entities were one physical object. Each child-entity will follow its parent's movement.

A simple example would be parenting a light_dynamic to a lamp prop so the light becomes part of the lamp and moves with it.

The child-parent relationship is always defined in the object properties of the child-entity. The parent-entity doesn't have any say in choosing its followers. This leads to the rather awkward use of 'parenting' as a reflexive verb throughout the documentation, eg "must be parented", "parent the child to the parent", "entities can have parents", etc.

All entities can have parents, though many entities do not include it in their FGD entries, and it may not necessarily function correctly. For example, prop_physics behave oddly when parented because they are physically simulated objects, and a logic_relay for example isn't visible or moves on its own, so parenting it would have little effect. For prop_physics, it's generally better to use a prop_dynamic or prop_dynamic_override instead or use the physics constraint system.

Warning.pngWarning: There is a limit of 512 entities permitted to be in a single parenting hierarchy/chain.
Blank image.pngTodo: What happens if this limit is exceeded?

Child Behavior

  • The Offset is the distance (and any rotational offset) between the Child and Parent entities at the time the relationship is activated. Whilst the offset is maintained, the Child will move parallel to its parent's movements, and "orbit" the parent's origin at the offset distance when the parent rotates. Only the SetParentAttachment input changes the offset; it instantly "teleports" the child to the parent's attachment point and holds it there instead.
  • Collision : Physics simulation will no longer occur for children, causing them to potentially pass through walls or other solid objects if the parent moves them there. Scripted movements such as animations or brush-based entities will still occur, so you can chain different brush entities together to form a complex moving contraption.
  • If the Parent is Killed, all of its current Children are also removed from the game.
  • If a child does not define behavior for player interaction (+USE) or touching these will be relayed to the parent. This allows you to parent a prop_dynamic to a func_button and then have the player +USE the model to interact with the button, for example.

Parentname

To create a child-parent relationship between two entities, set the child-entity's parentname keyvalue to the parent-entity's targetname. The parent can also be a keyword, such as !activator.

  • Maintains offset.
Icon-Bug.pngBug:The parent field does not work correctly for some entities in CS:S. Instead, use a logic_auto and call SetParent at the start of the map
Icon-Bug.pngBug:Children may lose their parents on HL2:DM Linux Dedicated Server. It is highly recommended to use a logic_auto with the output OnMapSpawn child SetParent parent instead.
  • Additionally, an attachment point can be set by setting the value to parent,attachment. This can be used to have an entity follow an animated part of the model, such as the Howitzer handle in Left 4 Dead. It behaves like SetParentAttachmentMaintainOffset.
    For example: Howitzer_prop,Handle
The Howitzer handle, as separate prop, following the "Handle" $attachment of the Howitzer model.

SetParent

You can also fire a SetParent input at the child-entity to change its child-parent relationship.

  • Use the targetname of the new parent as the input parameter to make the child follow the new parent.
  • If you leave the parameter blank, it has the same effect as the ClearParent input (see below).
  • Maintains offset.

SetParentAttachment

You can also fire a SetParentAttachment input at the child-entity to attach it to a specific attachment point on its parent. The parameter is the name of the attachment point.
Entities must be parented before being sent this input. Use at least a 0.02 second delay between SetParent and SetParentAttachment input, to ensure they run in the right order.

  • The child entity will automatically copy location and rotation of the attachment point.

Your child entity will align its location and axis with the parent models attachment location and axis. You can find out the attachment location and axis by loading the model in HLMV.
The only way to change this is by either recompiling the parent model to change its attachments, or recompiling the child model to change its entire rotation.


SetParentAttachment GLaDOS Example.png
A Personality core in Portal following an $attachment of the GLaDOS model using SetParentAttachment.
As you can see, the Sphere has its axis shown in hammer, GLaDOS has her attachments axis shown in HLMV.
The sphere aligns its axis with the axis of GLADOS' Attachment point.

SetParentAttachmentMaintainOffset

Note.pngNote:Entities must be parented before being sent this input. Use at least a 0.02 second delay between SetParent and SetParentAttachmentMaintainOffset inputs, to ensure they run in the right order and attach at the right spot. Shorter delays cause the entities to not have the proper offset.

You can also fire a SetParentAttachmentMaintainOffset input at the child-entity to attach it to a specific attachment point on it's parent. This works exactly the same as the SetParentAttachment input except the child-entity will maintain it's relative position to and distance from the parent at the time it is attached.

  • Maintains offset, but the Child shadows/orbits the attachment point position instead of the parent's EntityOrigin.

ClearParent

You can also fire a ClearParent input at the child-entity to remove its child-parent relationship. This simply 'unparents' or 'detaches' the child-entity from its current parent, so the child is then free to move (or not) independently of its former parent.

KillHierarchy

Note.pngNote:This is the only movement hierarchy-related input that can be fired at the parent-entity.

If you fire a KillHierarchy input at the parent-entity, it removes the parent-entity and all of its children from the world.

  • If you fire a Kill input at the parent-entity, its children will be detected and eventually also destroyed, logging a warning in the console. This happens almost immediately, but it may be possible for other logic or outputs to be executed before they're fully cleaned up.
Icon-Bug.pngBug:If you have a point_spotlight child of another entity, and you kill the parent entity without removing the point_spotlight using an input, it will spawn in the center of the map (0,0,0) facing north.

Alternatives

A few "alternatives" exist to the standard entity hierarchy system. They may be suitable for specific purposes or are specialized to a particular set of entities.

  • Physics Constraints are designed to constrain physically simulated entities like prop_physics. They can wobble, break, and do various other cool things.
  • logic_measure_movement causes an entity to mimic the movements of another with room for flexibility. You could use this to move entities that cannot usually be parented, like logic entities or physics props.
  • prop_dynamic_ornament takes advantage of bonemerging, the same system weapons use to attach to their owners' hands. This still uses parenting under the hood.

Programmers can also use FollowEntity() to take advantage of bonemerging without having to use prop_dynamic_ornament.