Difference between revisions of "LlGetForce"
Jump to navigation
Jump to search
(Undo revision 1190204 by Rolig Loon (Talk)) |
m (I've turned on collapse for haiku sections.) |
||
Line 44: | Line 44: | ||
|cat1=Physics | |cat1=Physics | ||
|cat2=Movement | |cat2=Movement | ||
|haiku={{Haiku|The Master, Yoda,|Need for scripts he did not have.|The Force was with him.}} | |||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Revision as of 19:28, 22 August 2014
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: vector llGetForce( );0.0 | Forced Delay |
10.0 | Energy |
Returns a vector that is the force (if the script is physical)
Examples
<lsl> default {
state_entry() { llSetForce(<0,llFrand(10),0>,FALSE); //Sets the force in a frand of 10 in Y axis. llSetTimerEvent(1); //Resets the force every second. } touch_start(integer total_num) { llOwnerSay((string)llGetForce()); //Says the force. } timer() { llResetScript(); }
}
</lsl>See Also
Functions
• | llGetOmega | |||
• | llGetVel | |||
• | llGetTorque | |||
• | llGetMass | |||
• | llGetAccel | |||
• | llSetForce | |||
• | llSetTorque | |||
• | llSetForceAndTorque |