Jump to content

Is there a script that does this?


EmilyHuxley
 Share

You are about to reply to a thread that has been inactive for 4072 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

there is an example in the wiki.. http://wiki.secondlife.com/wiki/LlSetAlpha

float cloakSpeed = 0.1;default{    touch_end(integer total_number)    {        float alpha = 1.0;        while(alpha > 0.0)        {            alpha -= 0.1;            llSetAlpha(alpha, ALL_SIDES);            llSleep(cloakSpeed);        }        state cloaked;    }} state cloaked{    touch_end(integer total_number)    {        float alpha;        while (alpha < 1.0)        {            alpha += 0.1;            llSetAlpha(alpha, ALL_SIDES);            llSleep(cloakSpeed);        }        state default;    }

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 4072 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...