Views
Object:typeOf (Français)
Test si un objet est d'un certain type.
Si l'objet a le type spécifié dans sa hiérarchie cette fonction retourne true
, sinon retourne false
.
Fonction
Synopsis
b = Object:typeOf( name )
Arguments
string name
- Type pour le test.
Retour
boolean b
-
true
si l'objet est du type spécifié, sinon retournefalse
.
Exemples
Tester le type d'un objet
image = love.graphics.newImage("test.png")
print(image:typeOf("Object")) -- affiche: true
print(image:typeOf("Drawable")) -- affiche: true
print(image:typeOf("Image")) -- affiche: true
print(image:typeOf("MouseJoint")) -- affiche: false
print(image:typeOf("Object")) -- affiche: true
print(image:typeOf("Drawable")) -- affiche: true
print(image:typeOf("Image")) -- affiche: true
print(image:typeOf("MouseJoint")) -- affiche: false
Voir Aussi
Autres Langues
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info