UNPKG

@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.33 kB
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 pauses an Audio V2 sound. If the sound is already paused, resumes it. */ class FlowGraphPauseSoundBlock extends FlowGraphExecutionBlockWithOutSignal { /** * Constructs a new FlowGraphPauseSoundBlock. * @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; } if (soundValue.state === 5 /* SoundState.Paused */) { soundValue.resume(); } else if (soundValue.state === 2 /* SoundState.Starting */ || soundValue.state === 3 /* SoundState.Started */) { soundValue.pause(); } this.out._activateSignal(context); } /** * @returns class name of the block. */ getClassName() { return "FlowGraphPauseSoundBlock" /* FlowGraphBlockNames.AudioPauseSound */; } } let _Registered = false; /** * Register side effects for flowGraphPauseSoundBlock. * Safe to call multiple times; only the first call has an effect. */ function RegisterFlowGraphPauseSoundBlock() { if (_Registered) { return; } _Registered = true; RegisterClass("FlowGraphPauseSoundBlock" /* FlowGraphBlockNames.AudioPauseSound */, FlowGraphPauseSoundBlock); } /** * Re-exports pure implementation and applies runtime side effects. * Import flowGraphPauseSoundBlock.pure for tree-shakeable, side-effect-free usage. */ RegisterFlowGraphPauseSoundBlock(); export { FlowGraphPauseSoundBlock, RegisterFlowGraphPauseSoundBlock }; //# sourceMappingURL=flowGraphPauseSoundBlock-D1giajxu.esm.js.map