Object:type (日本語)

オブジェクトの種類を文字列形式で取得します。

関数

概要

type = Object:type()

引数

なし。

返値

string type
オブジェクトの種類を文字列形式で返します。

用例

オブジェクトの種類を表示

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

関連

そのほかの言語