LlGetRegionName/fr

From Second Life Wiki
Jump to navigation Jump to search

Description

Fonction: string llGetRegionName( );

Renvoie un string correspondant au nom de la région


Exemples

<lsl> // Début d’un script d’informations sur une région. default {

   state_entry()
   {
       llSetTimerEvent(3.0);
   }
   
   timer()
   {
       string msg;
       
       msg = "NOM  REGION : " + llGetRegionName();
       
       llSetText(msg, <0,1,0>, 1.0);
   }

} </lsl>

Voir également

Fonctions

•  llGetSimulatorHostname Renvoie le nom de la sim
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.