Set Primitive Rotation

31 July 2019

  • C10 - added the selection optional parameter.

19 May 2015

  • Release 8.12 - added.
setprimitiverotation (Commands)
TypeCorrade progressive command
Commandsetprimitiverotation
DescriptionThe setprimitiverotation command can be used to set the rotation of a primitive (in a local frame).
Permissionsinteract
Parametersgroup, password, item, rotation
Last ChangesRelease 8.12 - added.

The setprimitiverotation command can be used to set the rotation of a primitive (in a local frame).

Command Required Parameters Required Corrade Permissions Example
setprimitiverotation group, password, item, rotation interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // sets the rotation of the
            // primitive named leg
            // to 90 deg. on the X axis
            "command", "setprimitiverotation",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "item", "leg",
            "range", 5,
            "rotation", llEuler2Rot(<90, 0, 0>*DEG_TO_RAD)
        ]
    )
);
Optional Parameter Possible Value Description
range A range in meters. The spherical distance from Corrade in which to locate the item.

Notes