Difference between revisions of "LlAdjustSoundVolume"

From Second Life Wiki
Jump to navigation Jump to search
m (updated lsl tags)
m
Line 1: Line 1:
{{LSL_Function/volume|volume}}{{LSL_Function
{{LSL_Function
|inject-2={{LSL_Function/volume|volume}}
|func=llAdjustSoundVolume
|func=llAdjustSoundVolume
|sort=AdjustSoundVolume
|sort=AdjustSoundVolume
Line 5: Line 6:
|p1_type=float|p1_name=volume
|p1_type=float|p1_name=volume
|func_footnote
|func_footnote
|func_desc=Adjusts '''volume''' of attached sound.
|func_desc=Adjusts {{LSLP|volume}} of attached sound.
|return_text
|return_text
|spec
|spec

Revision as of 11:39, 11 June 2012

Summary

Function: llAdjustSoundVolume( float volume );

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.
All Issues ~ Search JIRA for related Bugs

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

Search JIRA for related Issues

Signature

function void llAdjustSoundVolume( float volume );