Skip to main content

The "vngen_attach_anim_stop" Function

Syntax#

vngen_attach_anim_stop(name, id);
ArgumentTypeDescription
namestringThe ID of the attachment parent character
idreal/stringThe ID of the attachment to stop animating (or keyword all for all attachments)

Description#

Stops the active keyframe animation being performed on the input entity ID, if any. Note that this script only needs to be run to stop looped animations.

Example#

vngen_event() {
vngen_attach_anim_stop("John Doe", "attach");
}