BuildQueue
Manages items being made by a Producer.
Properties
Name | Type | Access | Description |
---|---|---|---|
empty | Boolean | R | True if there are no items in the queue |
items | Table of GameObjectClass | R | Items currently in the queue |
timeRemaining | Number | RW | Time remaining on current item |
Functions and Enumerations
- Instance Functions
Functions that are used with a BuildQueue instance.
- clear( )
Remove all items from the queue
- complete( )
Complete the current build item
- pop( )
Remove the item at the front of the queue
- push( odf )
Add an item to the end of the queue
- remove( index )
Remove the item at an index
- clear( )