QueuedInstances
A QueuedInstance is a class that's stored within Object Pools in this module
A QueuedInstance contains the Instance it's meant to represent and a few properties, functions and signals.
You can load the instance contained within a QueuedInstance by using :Load()
You can also unload instances using :Unload()
Getting the Instance from within a QueuedInstance
To get the Instance that the QueuedInstance is referencing, simply do:
Events
QueuedInstances have events you can track and execute code with, such as:
.Loaded
This event fires when the QueuedInstance is loaded with :Load() or retrieved from the Pool with :LoadItem()
.Unloaded
Fires after the QueuedInstance has been unloaded
Last updated