PosJump

From Second Life Wiki
Revision as of 18:30, 19 September 2008 by Uchi Desmoulins (talk | contribs) (New page: Here's an interesting method I discovered for bypassing the 10m limitation in Non-Physical movement. It has its similarities to warpPos, but with minimal overhead. <lsl> // An altern...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Here's an interesting method I discovered for bypassing the 10m limitation in Non-Physical movement. It has its similarities to warpPos, but with minimal overhead.

<lsl> // An alternative to the warpPos trick without all the overhead. // Trickery discovered by Uchi Desmoulins.

posJump(vector destpos) { vector big_vector = <100000000000000000000000000000.0, 100000000000000000000000000000.0, 100000000000000000000000000000.0>; llSetPrimitiveParams([PRIM_POSITION, big_vector, PRIM_POSITION, destpos]); } </lsl>