Classes
Enums
UPDATE_PRIORITYnumber
Represents the update priorities used by internal Pixi classes when registered with the Ticker object. Higher priority items are updated first and lower priority items, such as render, should go later.
Properties:
Name | Default | Description |
---|---|---|
HIGH |
25
|
High priority updating, used by AnimatedSprite |
INTERACTION |
50
|
Highest priority used for interaction events in EventSystem |
LOW |
-25
|
Low priority used for Application rendering. |
NORMAL |
0
|
Default priority for ticker events, see Ticker#add. |
UTILITY |
-50
|
Lowest priority used for BasePrepare utility. |
Type Definitions
A callback which can be added to a ticker.
ticker.add(() => {
// do something every frame
});