CHANGED TEXTURE - Second Life Wiki

CHANGED TEXTURE

From Second Life Wiki

Jump to: navigation, search

integer CHANGED_TEXTURE = 0x10;

The integer constant CHANGED_TEXTURE has the value 0x10

Prim texture parameters (reflection/bump setting, repeats, flip, rotation, or offset) have changed. Transparency or color changes trigger a CHANGED_COLOR event not a CHANGED_TEXTURE event.

Related Functions, Events & Constants

Examples

 
default
{
    changed(integer change)
    {
        if (change & CHANGED_TEXTURE) //note that it's & and not &&... it's bitwise!
        {
            llOwnerSay("The prims texture or texture attributes have changed.");
        }
    }
}