Skip to content
Dmitry Novikov edited this page May 22, 2018 · 5 revisions

Trigger_setorigin

Point entity


















































Description

    Copies the position and orientation of one entity to another, providing several additional options for angles and relative rotation. Entities moved with this won't shove away any objects blocking them, but pass through them, blocking said objects instead. (This entity does set the origin, it does not perform movement of an entity) This entity has several inconsistencies in its design.

Properties

    Target - (target) (String)
      When an entity is activated, it triggers the entity with the name specified by Target.

    Copy Pointer - (copypointer) (String)
      The entity to copy coordinates/angles from.

    Position Offset (X, Y, Z) - (offset) (String)
      Offset the target entity by this vector when "Offset Difference" is set.

    Angle Offset (X, Y, Z) - (angleoffset) (String)
      Offsets the target entity's angles by this value when trigger_setorigin is first activated. Will only touch angles set to be copied as per spawnflags.

    Invert X Angle - (invert_x) (Choices)
      Use inverted pitch for the target entity's orientation.

    Invert Y Angle - (invert_y) (Choices)
      Use inverted yaw for the target entity's orientation.

    Invert Z Angle - (invert_z) (Choices)
      Use inverted roll for the target entity's orientation.

Flags

  • 1: "Constant": Always update the target's position and orientation.
  • 4: "Set Once": Only update the target once and remove the trigger_setorigin from the game afterwards.
  • 8: "Lock Offsets": Use the vector between the target and the copypointer plus the "Offset"-keyvalue as the offset vector.
  • 16: "Copy X Angle": Copy the X angle of the copypointer.
  • 32: "Copy Y Angle": Copy the Y angle of the copypointer.
  • 64: "Copy Z Angle": Copy the Z angle of the copypointer.
  • 128: "Copy X Axis": Copy the X axis of the copypointer.
  • 256: "Copy Y Axis": Copy the Y axis of the copypointer.
  • 512: "Copy Z Axis": Copy the Z axis of the copypointer.
  • 1024: "Skip Initial Set": If set, the target entity will not be moved to the copypointer's origin before doing the offset difference calculation (set this unless you want the target entity stuck to the center of the copypointer).
Clone this wiki locally