LlAdjustSoundVolume

From Second Life Wiki

(Redirected from LSL llAdjustSoundVolume)
Jump to: navigation, search

Contents

Description

Function: llAdjustSoundVolume( float volume );
207 Function ID
0.1 Delay
10.0 Energy

Adjusts volume of attached sound.

• float volume between 0.0 (silent) and 1.0 (loud) (0.0 <= volume <= 1.0)

Caveats

  • This function causes the script to sleep for 0.1 seconds.

Examples

 
default
{
    state_entry()
    {
        llListen(42, "", llGetOwner(), "");
    }
 
    listen(integer chan, string name, key id, string msg)
    {
        float value = (float)msg;
        llAdjustSoundVolume(value);
        llOwnerSay("Volume set to: " + (string)value + " of 1.0");
    }
}
 
Personal tools