Difference between revisions of "State exit/fr"
Jump to navigation
Jump to search
Gally Young (talk | contribs) m (updated ^_^) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{LSL_Event | {{LSL_Event/fr | ||
|event_id=1|event_delay|event=state_exit | |event_id=1|event_delay|event=state_exit | ||
|event_desc=Déclenché | |event_desc=Déclenché lors d'une requalification de [[state/fr|l'état]] du script. | ||
|constants | |constants | ||
|spec | |spec | ||
|caveats | |caveats | ||
|examples= | |examples= | ||
< | <lsl> | ||
default | default | ||
{ | { | ||
Line 37: | Line 37: | ||
llOwnerSay("On quitte l'état \"autre\""); | llOwnerSay("On quitte l'état \"autre\""); | ||
} | } | ||
}</ | }</lsl> | ||
|helpers | |helpers | ||
|also_header | |also_header | ||
Line 44: | Line 44: | ||
|also_articles | |also_articles | ||
|also_footer | |also_footer | ||
|notes | |notes=Alors que l'état "[[default/fr|default]]" lance [[state_entry/fr|state_entry]] sur une reinitialisation du script, state_exit n'est pas lancé avant la réinitialisation. | ||
|mode | |mode | ||
|deprecated | |deprecated | ||
|cat1=Script | |cat1=Script/fr | ||
|cat2=State | |cat2=State/fr | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 10:55, 18 April 2009
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Event: state_exit( ){ ; }Exemples
<lsl> default {
state_entry() { llOwnerSay("Etat par défaut"); } touch_start(integer detected) { state other; } state_exit() { llOwnerSay("On quitte l'état par défaut"); }
}
state other {
state_entry() { llOwnerSay("Dans l'état \"autre\""); } touch_start(integer detected) { state default; } state_exit() { llOwnerSay("On quitte l'état \"autre\""); }
}</lsl>
Notes
Alors que l'état "default" lance state_entry sur une reinitialisation du script, state_exit n'est pas lancé avant la réinitialisation.
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.