LIST STAT RANGE/fr
From Second Life Wiki
| Portail LSL | | | Fonctions | | | Évènements | | | Types | | | Opérateurs | | | Constantes | | | Contrôle d'exécution | | | Bibliothèque de scripts | | | Tutoriels |
Description
Constante: integer LIST_STAT_RANGE = 0;La constante LIST_STAT_RANGE de type integer a la valeur 0
Calcule l'amplitude d'un list. (max - min)
Exemples
float amplitude = llListStatistics( LIST_STAT_RANGE, numList );
float max = llListStatistics( LIST_STAT_MAX, numList ); float min = llListStatistics( LIST_STAT_MIN, numList ); float amplitude = max - min;

