ll.WanderWithin

ll.WanderWithin(Origin: vector, Area: vector, Options: list) : ()

Wander within a specified volume. Sets a character to wander about a central spot within a specified area.

Example

ll.WanderWithin(vector(1,1,1), vector(1,1,1), {})
{
  "def": "func",
  "desc": "Wander within a specified volume.\nSets a character to wander about a central spot within a specified area.",
  "energy": 10,
  "sleep": 0,
  "pure": false,
  "link": "https://wiki.secondlife.com/wiki/LlWanderWithin",
  "name": "WanderWithin",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "()"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Origin",
          "desc": "Central point to wander about.",
          "type": [
            "vector"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Area",
          "desc": "Half-extents of an area the character may wander within. (i.e., it can wander from the specified origin by up to +/-Distance.x in x, +/-Distance.y in y, etc.)",
          "type": [
            "vector"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Options",
          "desc": "No options available at this time.",
          "type": [
            "list"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll