Views
Object:type (Français)
Retourne le type d'un objet comme une chaîne de caractère.
Fonction
Synopsis
type = Object:type()
Arguments
Aucun.
Returns
string type
- Type de l'objet sous forme de chaîne de caractère.
Examples
Printing the type of an object
image = love.graphics.newImage("test.png")
print(image:type()) -- affiche: 'Image'
source = love.audio.newSource("test.ogg")
print(source:type()) -- affiche: 'Source'
print(image:type()) -- affiche: 'Image'
source = love.audio.newSource("test.ogg")
print(source:type()) -- affiche: 'Source'
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