CHANGED TEXTURE

From Second Life Wiki
Revision as of 14:45, 19 March 2007 by BamBam Sachertorte (talk | contribs) (added details for CHANGED_TEXTURE)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Constant: 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 changes trigger a CHANGED_COLOR event not a CHANGED_TEXTURE event.

Related Articles

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.");
        }
    }
}

Deep Notes

Search JIRA for related Issues

Signature

integer CHANGED_TEXTURE = 0x10;