Difference between revisions of "Object:type"
(Not a documented or supported behavior) |
(Updated type() output in example) |
||
(One intermediate revision by one other user not shown) | |||
Line 13: | Line 13: | ||
<source lang="lua"> | <source lang="lua"> | ||
image = love.graphics.newImage("test.png") | image = love.graphics.newImage("test.png") | ||
− | print(image:type()) -- outputs: | + | print(image:type()) -- outputs: Texture |
source = love.audio.newSource("test.ogg") | source = love.audio.newSource("test.ogg") | ||
print(source:type()) -- outputs: Source | print(source:type()) -- outputs: Source | ||
+ | </source> | ||
== See Also == | == See Also == |
Latest revision as of 02:59, 30 November 2022
Gets the type of the object as a string.
Contents
Function
Synopsis
type = Object:type()
Arguments
None.
Returns
string type
- The type as a string.
Examples
Printing the type of an object
image = love.graphics.newImage("test.png")
print(image:type()) -- outputs: Texture
source = love.audio.newSource("test.ogg")
print(source:type()) -- outputs: Source
See Also
Other Languages
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