mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 02:41:06 +00:00
examples(webaudio): allow turning the noise off again
This commit is contained in:
parent
a3e160744e
commit
826619870f
@ -3,7 +3,7 @@
|
|||||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<input id="play" type="button" value="Click me first to turn on audio"/>
|
<input id="play" type="button" value="⏯"/>
|
||||||
(headphone users, please make sure your volume is not too loud!)
|
(headphone users, please make sure your volume is not too loud!)
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
@ -9,6 +9,9 @@ import('./webaudio').then(rust_module => {
|
|||||||
fm.set_fm_frequency(0);
|
fm.set_fm_frequency(0);
|
||||||
fm.set_fm_amount(0);
|
fm.set_fm_amount(0);
|
||||||
fm.set_gain(0.8);
|
fm.set_gain(0.8);
|
||||||
|
} else {
|
||||||
|
fm.free();
|
||||||
|
fm = null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -36,6 +36,12 @@ pub struct FmOsc {
|
|||||||
fm_gain_ratio: f32,
|
fm_gain_ratio: f32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Drop for FmOsc {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
let _ = self.ctx.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[wasm_bindgen]
|
#[wasm_bindgen]
|
||||||
impl FmOsc {
|
impl FmOsc {
|
||||||
#[wasm_bindgen(constructor)]
|
#[wasm_bindgen(constructor)]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user