Hello again
I did a test with the letter T, but it didn't exactly come out with the effect I wanted, I would like it to be the same as the first video you sent as an example
What is going wrong is the texture I created? I must make the color solid at the beginning and gradient at the end
Reference video: https://drive.google.com/file/d/1GGNBDFIqFQjdQc_KKpUvlXkUE2d4RH3I/view
I used this script:
default
{
state_entry()
{
llSetTextureAnim ( ANIM_ON | SMOOTH | LOOP , ALL_SIDES , 1 , 1 , 1.0 , 3.0 , 0.3 ) ;
}
touch_start(integer total_number)
{
llSetTextureAnim ( FALSE , ALL_SIDES , 0 , 0 , 0.0 , 0.0 , 1.0 ) ;
}
}