Get Primitive Shape Data

31 July 2019

  • C10 - added the selection optional parameter.

18 August 2015

  • Release 8.40 - added.
getprimitiveshapedata (Commands)
TypeCorrade progressive command
Commandgetprimitiveshapedata
DescriptionCorrade can query primitive shapes using the getprimitiveshapedata command.
Permissionsinteract
Parametersgroup, password, item, data
Last ChangesRelease 8.40 - added.

Corrade can query primitive shapes using the getprimitiveshapedata command.

Command Required Parameters Required Corrade Permissions Example
getprimitiveshapedata group, password, item, data interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            "command", "getprimitiveshapedata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "item", "Vendor",
            // searches in a 5m range
            "range", "5",
            // returns the material and primitive type
            "data", wasListToCSV(
                [
                    "Material",
                    "PCode"
                ]
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);

The data parameter follows the ConstructionData structure and sub-structures.

Optional Parameter Possible Value Description
range A range in meters. The spherical distance from Corrade in which to locate the item.

Notes