Land collision/fr

From Second Life Wiki

Page Principale > Land collision > Land collision/fr
Jump to: navigation, search

Contents

Description

Event: land_collision( vector pos ){ ; }

Se déclenche lorsque l'objet entre en collision avec le sol.

• vector pos position correspondant à la localisation de la collision avec le sol.

Exemples

//L'objet disparait quand il touche le sol.
default 
{ 
  land_collision(vector pos) 
  { 
    llDie(); 
  } 
}

Voir aussi

Evénements

•  land_collision_start Début de collision avec le sol
•  land_collision_end Fin de collision avec le sol

Fonctions

•  llGround Renvoie la distance à laquelle se trouve le sol

Notes complémentaires

Problèmes

Bug - A problem which impairs or prevents the functions of the product. Closed - The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.    Présence d'évènements collision* influençant les évènements land_collision*
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.
In other languages