@itwin/core-frontend
Version: 
iTwin.js frontend components
16 lines • 722 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
 * @module WebGL
 */
import { BeEvent } from "@itwin/core-bentley";
/** @internal */
export class IModelFrameLifecycle {
    static onBeforeRender = new BeEvent();
    static onRenderOpaque = new BeEvent();
    static onChangeCameraFrustum = new BeEvent();
    static onChangeCameraView = new BeEvent();
}
//# sourceMappingURL=IModelFrameLifecycle.js.map