Studies

From Second Life Wiki
Jump to navigation Jump to search

I might save here some of my studies, some of my scripts... For now, I am just starting this.



This is my first script, to test the animated textures. Is just pasting code from other tutorials.

// // primul meu script "from scratch" // // astazi este si o zi remarcabila! // 10.10.2010 //


default {

   state_entry()
   {
       llSetTextureAnim(ANIM_ON | SMOOTH | LOOP , ALL_SIDES, 1,1,1,1,1);
   }
   touch_start(integer total_number)
   {
       llSay(0, "Touched already. Please remember.");
   }

}