Skip to main content

The "vngen_prompt_anim_start" Function

Syntax#

vngen_prompt_anim_start(id, anim, duration, loop, reverse, [ease]);
ArgumentTypeDescription
idreal/stringThe ID of the prompt to animate (or keyword all for all prompts)
animscriptThe animation script to perform
durationrealSets the duration of the entire animation
loopbooleanEnables or disables looping the animation
reversebooleanEnables or disables performing the animation in reverse keyframe order
[ease]integer/macroOptional: Sets the ease override for the animation script

Description#

Performs a keyframe animation script on the input entity ID with the input duration. As animations are temporary and relative, animations and modifications can be performed simultaneously.

See Included Animations for a list of included animation scripts and how to create your own, and Macros & Keywords for a list of available ease modes.

Example#

vngen_event() {
vngen_prompt_anim_start("prompt", anim_wobble, 1, false, false);
}