pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
36 lines (35 loc) • 905 B
TypeScript
/**
* Represents the update priorities used by internal Pixi classes when registered with
* the {@link Ticker} object. Higher priority items are updated first and lower
* priority items, such as render, should go later.
* @enum {number}
* @category ticker
* @standard
*/
export declare enum UPDATE_PRIORITY {
/**
* Highest priority used for interaction events in {@link EventSystem}
* @default 50
*/
INTERACTION = 50,
/**
* High priority updating, used by {@link AnimatedSprite}
* @default 25
*/
HIGH = 25,
/**
* Default priority for ticker events, see {@link Ticker#add}.
* @default 0
*/
NORMAL = 0,
/**
* Low priority used for {@link Application} rendering.
* @default -25
*/
LOW = -25,
/**
* Lowest priority used for {@link PrepareBase} utility.
* @default -50
*/
UTILITY = -50
}