This wiki is a copy of the original Skyrim CK wiki created and maintained by the UESP.net. See CreationKit:Copy Notice for more info.

Difference between revisions of "PlayAnimation - ObjectReference"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Plplecuyer
(No difference)

Revision as of 17:30, 24 October 2011

Member of: ObjectReference Script

Starts playing the specified animation on the object and returns immediately. (Internally, it sends the named event to the object's animation graph) If it succeeds, it returns true.

Syntax

bool Function PlayAnimation(string asAnimation) native

Parameters

  • asAnimation: The animation to play. (The name of the event to send to the animation graph)

Return Value

True if the animation successfully started playing.

Examples

; Play the "flip" animation on the switch
Switch.PlayAnimation("flip")

See Also