@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.
55 lines (51 loc) • 2.19 kB
JavaScript
import { c as FlowGraphExecutionBlockWithOutSignal, g as getNumericValue } from './KHR_interactivity-CEwUaqxQ.esm.js';
import { j as RichTypeFlowGraphInteger } 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 */
/**
* This block cancels a delay that was previously scheduled.
*/
class FlowGraphCancelDelayBlock extends FlowGraphExecutionBlockWithOutSignal {
constructor(config) {
super(config);
this.delayIndex = this.registerDataInput("delayIndex", RichTypeFlowGraphInteger);
}
_execute(context, _callingSignal) {
const delayIndex = getNumericValue(this.delayIndex.getValue(context));
if (delayIndex < 0 || isNaN(delayIndex) || !isFinite(delayIndex)) {
return this._reportError(context, "Invalid delay index");
}
const timers = context._getGlobalContextVariable("pendingDelays", []);
const timer = timers[delayIndex];
if (timer) {
timer.dispose();
// not removing it from the array. Disposing it will clear all of its resources
}
// activate the out output flow
this.out._activateSignal(context);
}
getClassName() {
return "FlowGraphCancelDelayBlock" /* FlowGraphBlockNames.CancelDelay */;
}
}
let _Registered = false;
/**
* Register side effects for flowGraphCancelDelayBlock.
* Safe to call multiple times; only the first call has an effect.
*/
function RegisterFlowGraphCancelDelayBlock() {
if (_Registered) {
return;
}
_Registered = true;
RegisterClass("FlowGraphCancelDelayBlock" /* FlowGraphBlockNames.CancelDelay */, FlowGraphCancelDelayBlock);
}
/**
* Re-exports pure implementation and applies runtime side effects.
* Import flowGraphCancelDelayBlock.pure for tree-shakeable, side-effect-free usage.
*/
RegisterFlowGraphCancelDelayBlock();
export { FlowGraphCancelDelayBlock, RegisterFlowGraphCancelDelayBlock };
//# sourceMappingURL=flowGraphCancelDelayBlock-DYTLw6Gc.esm.js.map