3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

phina.js サウンドの音量を調節する

Posted at

そういえば音量ってどう変えるんだろ…?!と悩んだので書きました。
ボリュームの値を徐々に変えてあげればBGMのフェードインとかも出来そうです。

SoundManagerクラスのsetVolumeMusicsetVolumeメソッドを使います。
Volumeの初期値はどちらも0.8です。

BGMの場合

SoundManager.setVolumeMusic(0.5);
  • playMusicメソッドで再生する音が対象

効果音の場合

SoundManager.setVolume(0.5);
  • playメソッドで再生する音が対象

参考

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?