get_master_volume
Returns global runtime audio volume.
Signature
get_master_volume
Returns global runtime audio volume.Signature
get_master_volume() -> floatParameters
| Name | Type | Default | Description |
|---|
Returns
floatExample
from conjure import *
init_window(360, 640, "Audio")
sound = load_sound("coin.mp3")
if is_key_pressed(KEY_SPACE):
play_sound(sound)See also
load_soundplay_soundstop_sound
Return to the audio overview or continue with the quickstart.