OnAnimationEventUnregistered - Form

From the CreationKit Wiki
Jump to navigation Jump to search

Member of: ActiveMagicEffect Script, Alias Script, and Form Script

Received when one of the animation events we are listening for has been automatically unregistered by the game due to the target animation graph unloading. This event is not received when you manually unregister for the event.

Syntax[edit | edit source]

Event OnAnimationEventUnregistered(ObjectReference akSource, string asEventName)

Parameters[edit | edit source]

  • akSource: The ObjectReference whose animation graph unloaded.
  • asEventName: The event that can no longer be received.

Example[edit | edit source]

Function SomeFunction()
  RegisterForAnimationEvent(JoeBob, "IdleFurnitureExit") ; Before we can use OnAnimationEvent we must register.
EndFunction

Event OnAnimationEventUnregistered(ObjectReference akSource, string asEventName)
	if (akSource == JoeBob) && (asEventName == "IdleFurnitureExit")
		Debug.Trace("We got unregistered for JoeBob's funiture exit event, do any necessary cleanup here")
	endIf
endEvent

Notes[edit | edit source]

  • Aliases and quests will automatically unregister for this event when the quest stops. Active magic effects will automatically unregister when they are removed.
  • This event is not relayed to any aliases or magic effects attached to the form.

See Also[edit | edit source]