Difference between revisions of "Object:type"

(Undo revision 2986 by Vrld (Talk))
(Updated type() output in example)
 
(13 intermediate revisions by 8 users not shown)
Line 1: Line 1:
 
Gets the type of the object as a string.
 
Gets the type of the object as a string.
 
 
== Function ==
 
== Function ==
 
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 11: Line 9:
 
=== Returns ===
 
=== Returns ===
 
{{param|string|type|The type as a string.}}
 
{{param|string|type|The type as a string.}}
 
 
== Examples ==
 
== Examples ==
 
 
=== Printing the type of an object ===
 
=== Printing the type of an object ===
 
<source lang="lua">
 
<source lang="lua">
 
image = love.graphics.newImage("test.png")
 
image = love.graphics.newImage("test.png")
print(image:type()) -- outputs: Image
+
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
Line 24: Line 20:
 
== See Also ==
 
== See Also ==
 
* [[parent::Object]]
 
* [[parent::Object]]
 
 
{{#set:Description=Gets the type of the object as a string.}}
 
{{#set:Description=Gets the type of the object as a string.}}
 +
{{#set:Since=000}}
 
[[Category:Functions]]
 
[[Category:Functions]]
 +
== Other Languages ==
 +
{{i18n|Object:type}}

Latest revision as of 02:59, 30 November 2022

Gets the type of the object as a string.

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