@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.
62 lines (58 loc) • 2.03 kB
JavaScript
import { c as FlowGraphExecutionBlockWithOutSignal } from './KHR_interactivity-CEwUaqxQ.esm.js';
import { R as RichTypeAny } 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 */
/**
* @experimental
* A block that stops an Audio V2 sound.
*/
class FlowGraphStopSoundBlock extends FlowGraphExecutionBlockWithOutSignal {
/**
* Constructs a new FlowGraphStopSoundBlock.
* @param config - optional configuration for the block
*/
constructor(config) {
super(config);
this.sound = this.registerDataInput("sound", RichTypeAny);
}
/**
* @internal
*/
_execute(context, _callingSignal) {
const soundValue = this.sound.getValue(context);
if (!soundValue) {
this._reportError(context, "No sound provided");
this.out._activateSignal(context);
return;
}
soundValue.stop();
this.out._activateSignal(context);
}
/**
* @returns class name of the block.
*/
getClassName() {
return "FlowGraphStopSoundBlock" /* FlowGraphBlockNames.AudioStopSound */;
}
}
let _Registered = false;
/**
* Register side effects for flowGraphStopSoundBlock.
* Safe to call multiple times; only the first call has an effect.
*/
function RegisterFlowGraphStopSoundBlock() {
if (_Registered) {
return;
}
_Registered = true;
RegisterClass("FlowGraphStopSoundBlock" /* FlowGraphBlockNames.AudioStopSound */, FlowGraphStopSoundBlock);
}
/**
* Re-exports pure implementation and applies runtime side effects.
* Import flowGraphStopSoundBlock.pure for tree-shakeable, side-effect-free usage.
*/
RegisterFlowGraphStopSoundBlock();
export { FlowGraphStopSoundBlock, RegisterFlowGraphStopSoundBlock };
//# sourceMappingURL=flowGraphStopSoundBlock-DB_oO78z.esm.js.map