Files
2025-01-04 00:34:03 +01:00

14 lines
282 B
JavaScript

/**
* A container group which is not bound to the stage world transform.
*
* @category - Canvas
*/
class OverlayCanvasGroup extends CanvasGroupMixin(UnboundContainer) {
/** @override */
static groupName = "overlay";
/** @override */
static tearDownChildren = false;
}