Skip to main content

The "vngen_button_destroy" Function

Syntax#

vngen_button_destroy(id, transition, duration, [ease]);
ArgumentTypeDescription
idreal/stringThe ID of the button to destroy (or keyword all for all buttons)
transitionscriptSets the transition animation to perform
durationrealSets the length of the transition animation, in seconds
[ease]integer/macroOptional: Sets the ease override for the transition script

Description#

Destroys the input entity ID, freeing its resources from memory. Can also perform an exit transition animation before destroying. Once a given ID has been destroyed, it can be created again with the same ID.

See Included Animations and Macros & Keywords for a list of available transition animations and ease modes.

Example#

vngen_event() {
vngen_button_destroy("btn", trans_fade, 1, ease_sin_out);
}