Skip to main content

The "vngen_event_reset_target" Function

Syntax#

vngen_event_reset_target();
ArgumentTypeDescription
N/AN/ANo arguments

Description#

Finalizes a segment of code containing Quantum events and actions. Once this script has been run, no more events can be executed after it for the current frame. It is also required to run the vngen_event_set_target script prior to the first event in the sequence.

Example#

vngen_event_set_target();
if vngen_event() {
//Actions
}
vngen_event_reset_target();