Difference between revisions of "LlAdjustSoundVolume"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 40: Line 40:
|cat3
|cat3
|cat4
|cat4
|history={{LSL Added|0.2|remote=http://secondlife.wikia.com/wiki/Version_0.2.0}}
}}
}}

Revision as of 16:31, 12 November 2013

Summary

Function: llAdjustSoundVolume( float volume );
0.1 Forced 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

<lsl> 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");
   }

}

</lsl>

Deep Notes

History

Footnotes

  1. ^ Early release notes were not very accurate or thorough, they sometimes included information about features added in previous releases or failed to include information about features added in that release.

Signature

function void llAdjustSoundVolume( float volume );