Difference between revisions of "LlGetAccel"

From Second Life Wiki
Jump to navigation Jump to search
m
(Added Example)
Line 8: Line 8:
|caveats
|caveats
|constants
|constants
|examples
|examples=
<pre>
//A very simple (and not very effective) way of keeping a physical object in place.
//If the object is moving when the script is put in the object, then the object will continue to move, so long as it doesn't accelerate.
//If you ever want to actually stop an object, use llMoveToTarget(llGetPos(), .1)
default {
    state_entry() {
          while (1 == 1) { // Go forever
              if (llVecMag(llGetAccel()) > .001) { //We're accelerating...
                    llApplyImpulse(-llGetAccel(), 0) //Slow us down.
              }
          }
    }
}</pre>
|helpers
|helpers
|also_functions=
|also_functions=

Revision as of 11:19, 26 November 2007

Summary

Function: vector llGetAccel( );

Returns a vector that is the acceleration of the object in the region frame of reference.

Examples

//A very simple (and not very effective) way of keeping a physical object in place.
//If the object is moving when the script is put in the object, then the object will continue to move, so long as it doesn't accelerate. 
//If you ever want to actually stop an object, use llMoveToTarget(llGetPos(), .1)
default {
     state_entry() {
          while (1 == 1) { // Go forever
               if (llVecMag(llGetAccel()) > .001) { //We're accelerating...
                    llApplyImpulse(-llGetAccel(), 0) //Slow us down.
               }
          }
     }
}

See Also

Functions

•  llGetOmega
•  llGetVel
•  llSetForce
•  llSetTorque
•  llSetForceAndTorque

Deep Notes

Search JIRA for related Issues

Signature

function vector llGetAccel();