ll.LinkSetSoundRadius

ll.LinkSetSoundRadius (LinkNumber: number, radius: number) -> ()

Limits radius for audibility of scripted sounds (both attached and triggered) to distance Radius around the link.

Example

ll.LinkSetSoundRadius(3.14, 3.14)
Raw function spec json
{
  "def": "func",
  "desc": "Limits radius for audibility of scripted sounds (both attached and triggered) to distance Radius around the link.",
  "energy": 10,
  "sleep": 0,
  "must_use": false,
  "link": "https://wiki.secondlife.com/wiki/LlLinkSetSoundRadius",
  "private": false,
  "takesSelf": false,
  "name": "LinkSetSoundRadius",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "()"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "LinkNumber",
          "desc": "Link number (0: unlinked, 1: root prim, >1: child prims) or a LINK_* flag",
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "radius",
          "desc": "Maximum distance that sounds can be heard.",
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll