Difference between revisions of "Color-to-Vector Tool"

From Second Life Wiki
Jump to navigation Jump to search
m (add LSL Examples categgory tag)
m (forgot the LSL Header - it's been a while)
Line 1: Line 1:
{{LSL Header}}
=====Say the Prim's Color Vector=====
=====Say the Prim's Color Vector=====



Revision as of 21:10, 20 June 2007

Say the Prim's Color Vector

This script is useful as a WYSIWYG color reporter. Each time the prim's color changes, the color vector is chatted to the owner. Note, it reports the color of face 0(zero) by default.

integer FACE = 0;

default {
    changed(integer change) {
        if (change & CHANGED_COLOR) llOwnerSay("Color Vector = " + (string)llGetColor(FACE));
    }
}