COLLIDE mot-clé
Renvoie vrai si deux objets se chevauchent.
Syntaxe
COLLIDE (object1, object2)
Paramètres
- object1: objet (requis)
- object2: objet (requis)
Exemple
DIM touching AS BOOLEAN
touching = COLLIDE(myImage2, myImage2)
IF COLLIDE(myImage, myText) THEN
'...faire quelque chose
END IF
IF NOT COLLIDE(_OBJECT, myRect) THEN
'...faire quelque chose
END IF
Retour à la liste des mots clés.