UNPKG
jsdx-soundman
Version:
latest (0.0.3)
0.0.3
0.0.2
Sound Manager API on JSDX framework
github.com/cfsghost/jsdx-soundman
jsdx-soundman
/
tests
/
getVolume.js
14 lines
(10 loc)
•
200 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var
Soundman
=
require
(
'../'
);
var
soundman =
new
Soundman
; soundman.
init
(
function
(
err
) {
if
(err) {
console
.
log
(err);
return
; }
console
.
log
(soundman.
getVolume
()); soundman.
uninit
(); });