Skip to main content

The "vngen_text_destroy" Function

Syntax#

vngen_text_destroy(id, transition, duration, [ease]);
ArgumentTypeDescription
idreal/stringThe ID of the text to destroy (or keyword all for all text)
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_text_destroy("text", trans_fade, 2, ease_sin_in);
}