I have a simple animated texture:
CODE
default
{
state_entry()
{
llSetTextureAnim(ANIM_ON | SMOOTH | LOOP, ALL_SIDES,0,0,0.0, 1,0.5);
}
}
What I would like to do is to change the texture animation rate from the current rate of 0.5 down to 0.1, and the transparency of the texture, from 0 to 100, both over 5 seconds.
I just can't think how to start to do this.
Vi