CHANGED SHAPE

From Second Life Wiki
Jump to navigation Jump to search

Description

Constant: integer CHANGED_SHAPE = 0x4;

The integer constant CHANGED_SHAPE has the value 0x4

PRIM_TYPE (box, prism, torus, taper, twist, cut …) has changed.

Caveats


Related Articles

Examples

<source lang="lsl2"> default {

   changed(integer change)
   {
       if (change & CHANGED_SHAPE) //note that it's & and not &&... it's bitwise!
       {
           llOwnerSay("The prim's shape has changed.");
       }
   }

} </source>

Deep Notes

Search JIRA for related Issues

Signature

integer CHANGED_SHAPE = 0x4;