Object:type (Italiano)

Restituisce il tipo dell'oggetto come stringa.

Funzione

Sinossi

type = Object:type()

Argomenti

Nessuno.

Restituisce

string (Italiano) type
Una stringa che riporta il nome del tipo.

Esempi

Stampare il tipo di un oggetto

image = love.graphics.newImage("test.png")
print(image:type()) -- output: Image
source = love.audio.newSource("test.ogg")
print(source:type()) -- output: Source

Vedi anche

In altre lingue