![]() |
Platformer Pro
2.3.2
A platform game kit for Unity.
|
A list that provides a queue like interface specifically for animation priorities. More...
Public Member Functions | |
int | Peek () |
Look at the first item in the queue. More... | |
int | Dequeue () |
Dequeues an item from the queue. More... | |
void | Enqueue (int item) |
Enqueue the specified item. More... | |
void | EnqueueAndPromote (int item) |
Enqueue the specified item and update all items that have a lower value to match this item (except the first). More... | |
A list that provides a queue like interface specifically for animation priorities.
int PlatformerPro.PriorityQueue.Dequeue | ( | ) |
Dequeues an item from the queue.
void PlatformerPro.PriorityQueue.Enqueue | ( | int | item | ) |
Enqueue the specified item.
item | Item to add to queue. |
void PlatformerPro.PriorityQueue.EnqueueAndPromote | ( | int | item | ) |
Enqueue the specified item and update all items that have a lower value to match this item (except the first).
item | Item to add to queue. |
int PlatformerPro.PriorityQueue.Peek | ( | ) |
Look at the first item in the queue.