AttachTo - ObjectReference

Member of: ObjectReference Script

Attaches this ref to the specified parent ref, which means it will follow the parent's attach ref node.

SyntaxEdit

Function AttachTo(ObjectReference akParent) native

ParametersEdit

  • akParent: The parent to attach this ref to

Return ValueEdit

None

ExamplesEdit

; Attach the grabby hand to the crane arm
GrabbyHand.AttachTo(CraneArm)

NotesEdit

  • The ref this is called on must be a created ref. This function will not work on non-created refs.
  • This operates identically to the attach parameter on PlaceAtNode, so if you're creating a new object and want to attach it immediately, it is faster to just use PlaceAtNode instead of separate Place, move, and attach calls.

See AlsoEdit