Difference between revisions of "PosJump"
Jump to navigation
Jump to search
Soft Linden (talk | contribs) m |
|||
Line 9: | Line 9: | ||
} | } | ||
</lsl> | </lsl> | ||
Don't rely on this behavior without first discussing it with a Physics Linden. It's certainly a bug, and likely to be fixed. |
Revision as of 17:05, 20 September 2008
Here's an interesting method for bypassing the 10m limitation in Non-Physical movement. It has its similarities to warpPos, but with minimal overhead.
<lsl> posJump(vector destpos) { // An alternative to the warpPos trick without all the overhead. // Trickery discovered by Uchi Desmoulins and Gonta Maltz. llSetPrimitiveParams([PRIM_POSITION, <1.84e+19, 1.84e+19, 1.84e+19>, PRIM_POSITION, destpos]); } </lsl>
Don't rely on this behavior without first discussing it with a Physics Linden. It's certainly a bug, and likely to be fixed.