OnEnd - Package

From the Fallout4 CreationKit Wiki
Revision as of 16:28, 12 March 2013 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus Category:Events '''Member of:''' Package Script Event called when the package is ends normally (but not if it is preempted). ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Package Script

Event called when the package is ends normally (but not if it is preempted).

Syntax[edit | edit source]

Event OnEnd(Actor akActor)

Parameters[edit | edit source]

  • akActor: The actor the package was running on

Examples[edit | edit source]

Event OnEnd(Actor akActor)
  Debug.Trace("This package finished on " + akActor)
endEvent

Notes[edit | edit source]

  • This event runs in parallel with the end fragment.

See Also[edit | edit source]