Release Notes/Second Life RC BlueSteel/11

11.12.12.246583

11.12.01.246038

11.11.19.245570

11.11.15.245109

11.11.07.244630

11.10.31.244269

11.10.21.243647

11.10.18.243270

11.10.12.242860


11.10.03.242227

11.09.26.241576

11.09.15.240906

11.09.09.240513

11.08.26.239591

11.08.23.239333

11.08.15.238486

11.08.10.238207

11.08.08.237997

11.08.02.237522

11.07.12.235430

11.06.28.234196

The list has the signature [vector axis, float spinrate, float gain] like the parameters for llTargetOmega

Examples:

// Set this prim rotating
llTargetOmega(<1.0,3.0,0.5>, TWO_PI, 1.0);

// Read back this prim's current target omega
list current_omega = llListToList( llGetPrimitiveParams([PRIM_OMEGA]); // should be [PRIM_OMEGA, axis, spinrate, gain]
vector axis = llList2Vector(current_omega, 1); // Should be <1.0,3.0,0.5>
float spinrate = llList2Float(current_omega, 2); // Should be TWO_PI
float gain = llList2Float(current_omega, 3); // Should be 1.0

// Set all child prims rotating
llSetLinkPrimitiveParamsFast(LINK_ALL_CHILDREN, [PRIM_OMEGA, <1.0,3.0,0.5>, TWO_PI, 1.0]);


11.06.21.233291

Example:

key http_request_id = llHTTPRequest("http://example.com/", [HTTP_VERBOSE_THROTTLE, 0], "");

The list has the signature [vector axis, float spinrate, float gain] like the parameters for llTargetOmega

Examples:

// Set this prim rotating
llTargetOmega(<1.0,3.0,0.5>, TWO_PI, 1.0);

// Read back this prim's current target omega
list current_omega = llListToList( llGetPrimitiveParams([PRIM_OMEGA]); // should be [PRIM_OMEGA, axis, spinrate, gain]
vector axis = llList2Vector(current_omega, 1); // Should be <1.0,3.0,0.5>
float spinrate = llList2Float(current_omega, 2); // Should be TWO_PI
float gain = llList2Float(current_omega, 3); // Should be 1.0

// Set all child prims rotating
llSetLinkPrimitiveParamsFast(LINK_ALL_CHILDREN, [PRIM_OMEGA, <1.0,3.0,0.5>, TWO_PI, 1.0]);

11.06.14.232746

11.05.31.231546

11.05.24.230905

11.05.18.230193

11.05.05.228940

11.05.03.228703

11.04.26.227686

11.04.19.227029

11.04.12.226461

11.04.05.225783

11.03.29.225233

11.03.22.224783

11.03.16.224235

11.03.15.223967

11.03.08.223134

11.03.01.222307

11.02.22.221782

11.02.15.221187

11.02.08.220606

11.02.01.220158

11.01.25.219640

11.01.18.219191

11.01.10.218736