@babylonjs/viewer
Version:
The Babylon Viewer aims to simplify a specific but common Babylon.js use case: loading, viewing, and interacting with a 3D model.
67 lines (63 loc) • 2.17 kB
JavaScript
import { a as FlowGraphEventBlock } from './KHR_interactivity-CEwUaqxQ.esm.js';
import { d as RichTypeNumber } from './declarationMapper-CqO08-WM.esm.js';
import { u as RegisterClass } from './index-MZPybX0H.esm.js';
import './objectModelMapping-De5EKNEZ.esm.js';
import './spotLight.pure-CRdZC6Ci.esm.js';
/** This file must only contain pure code and pure imports */
/**
* Block that triggers on scene tick (before each render).
*/
class FlowGraphSceneTickEventBlock extends FlowGraphEventBlock {
constructor() {
super();
this.type = "SceneBeforeRender" /* FlowGraphEventType.SceneBeforeRender */;
this.timeSinceStart = this.registerDataOutput("timeSinceStart", RichTypeNumber);
this.deltaTime = this.registerDataOutput("deltaTime", RichTypeNumber);
}
/**
* @internal
*/
_preparePendingTasks(_context) {
// no-op
}
/**
* @internal
*/
_executeEvent(context, payload) {
this.timeSinceStart.setValue(payload.timeSinceStart, context);
this.deltaTime.setValue(payload.deltaTime, context);
this._execute(context);
return true;
}
/**
* @internal
*/
_cancelPendingTasks(_context) {
// no-op
}
/**
* @returns class name of the block.
*/
getClassName() {
return "FlowGraphSceneTickEventBlock" /* FlowGraphBlockNames.SceneTickEvent */;
}
}
let _Registered = false;
/**
* Register side effects for flowGraphSceneTickEventBlock.
* Safe to call multiple times; only the first call has an effect.
*/
function RegisterFlowGraphSceneTickEventBlock() {
if (_Registered) {
return;
}
_Registered = true;
RegisterClass("FlowGraphSceneTickEventBlock" /* FlowGraphBlockNames.SceneTickEvent */, FlowGraphSceneTickEventBlock);
}
/**
* Re-exports pure implementation and applies runtime side effects.
* Import flowGraphSceneTickEventBlock.pure for tree-shakeable, side-effect-free usage.
*/
RegisterFlowGraphSceneTickEventBlock();
export { FlowGraphSceneTickEventBlock, RegisterFlowGraphSceneTickEventBlock };
//# sourceMappingURL=flowGraphSceneTickEventBlock-CScC2ogI.esm.js.map