Google
×
Jan 22, 2015 · Make the entire object disappear for 5 seconds default { touch_start(integer num_detected) { // transparent llSetLinkAlpha(LINK_SET, 0.0, ...
Jan 22, 2015 · ... llSetAlpha will only affect the prim that the script it is in. It will not affect any linked prims. To set the alpha state for those, use llSetLinkAlpha ...
To set the alpha of the current prim by itself, use llSetAlpha (though llSetLinkAlpha will still work). To set the color of other prims in the object, use llSetLinkColor.
... llSetLinkAlpha(idx+1, 1.0, ALL_SIDES); //Ex: SHOW,plate,spoon, napkin <---- makes named prims visible } else if (Alpha == "HIDE") { llSetLinkAlpha(idx+1,0.0,  ...
Feb 4, 2015 · llSetLinkAlpha(integer link, float alpha, integer face) ... 0.5, 6); // Will set face 6 of link 3 to 50% transparent llSetLinkAlpha(2, 0.0, ALL_SIDES); ...
Jul 20, 2007 · ... llSetLinkAlpha(LINK_SET,1.0,ALL_SIDES); }else if(command == "hide hat"){ // llSay(0,"hide"); //make it invisible llSetLinkAlpha(LINK_SET,0.0 ...
This delay number is the amount of time to delay in between each step while fading in and out. There are currently 10 steps. In other words, the smaller this ...
default { state_entry() { llSetLinkAlpha (LINK_SET, 0.0, ALL_SIDES); //transparent when rezzed llSetText("I always RTFM", <1.0, 0.0, 0.0>, 1.0); } ...