CHANGED SHAPE

From Second Life Wiki
Revision as of 11:56, 8 January 2014 by Kireji Haiku (talk | contribs) (added intra-wiki links and)
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.

Related Articles

Examples

<lsl> default {

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

} </lsl>

Deep Notes

Search JIRA for related Issues

Signature

integer CHANGED_SHAPE = 0x4;