Set Primitive Flexible Data

31 July 2019

  • C10 - added the selection optional parameter.

20 August 2015

  • Release 8.44 - added.

<data Commands> Type: Corrade progressive command Command[wiki]: setprimitiveflexibledata Description[wiki]: The setprimitiveflexibledata command can be used to retrieve the set flexible data for a primitive. Permissions[wiki]: interact Parameters[wiki]: group, password, item, data Last Changes[wiki]: Release 8.44 - added. </data>

The setprimitiveflexibledata command can be used to retrieve the set flexible data for a primitive.

Command Required Parameters Required Corrade Permissions Example
setprimitiveflexibledata group, password, item, data interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // set the gravity and wind of a primitive
            // by UUID in a 4 meters range
            "command", "setprimitiveflexibledata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "item", "4ad413bc-881f-4bd4-9d07-e9fb617cbf3b",
            "range", 4,
            "data", wasURLEscape(
                wasListToCSV(
                    [
                        "Gravity",
                        9.81,
                        "Wind",
                        5
                    ]
                )
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);
Optional Parameters Possible Value Description
range A number representing meters. The spherical radius from Corrade to search the primitive in.

The command sets members passed to the data key from the FlexibleData structure.

Notes