ll.AdjustSoundVolume

ll.AdjustSoundVolume (Volume: number) -> ()

Adjusts the volume (0.0 - 1.0) of the currently playing attached sound. This function has no effect on sounds started with llTriggerSound.

Example

ll.AdjustSoundVolume(3.14)
Raw function spec json
{
  "def": "func",
  "desc": "Adjusts the volume (0.0 - 1.0) of the currently playing attached sound.\nThis function has no effect on sounds started with llTriggerSound.",
  "energy": 10,
  "sleep": 0.1,
  "must_use": false,
  "link": "https://wiki.secondlife.com/wiki/LlAdjustSoundVolume",
  "private": false,
  "takesSelf": false,
  "name": "AdjustSoundVolume",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "()"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Volume",
          "desc": "The volume to set.",
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll