playcanvas
Version:
Open-source WebGL/WebGPU 3D engine for the web
13 lines (11 loc) • 398 B
JavaScript
/**
* Specifies different color tints for the hover, pressed and inactive states.
*
* @category User Interface
*/ const BUTTON_TRANSITION_MODE_TINT = 0;
/**
* Specifies different sprites for the hover, pressed and inactive states.
*
* @category User Interface
*/ const BUTTON_TRANSITION_MODE_SPRITE_CHANGE = 1;
export { BUTTON_TRANSITION_MODE_SPRITE_CHANGE, BUTTON_TRANSITION_MODE_TINT };