The "sys_queue_submit" Function
#
SyntaxArgument | Type | Description |
---|---|---|
id | string | The ID of the queue to read data from |
#
DescriptionVNgen uses a custom queue system for certain data to afford greater control over when and how it is applied. This is not the same as GameMaker Studio's built-in queue data structures and should not be used as a replacement for them.
This script is specially designed to read queued data into the global backlog. Once data has been read, it will be removed from the queue. This script expects data to already be formatted as backlog data, and improperly formatted data will halt the game with an error.
As this script is run automatically by any actions that require delayed data execution, it is almost never necessary to run sys_queue_submit
manually.