Difference between revisions of "Object:type"

(Undo revision 5730 by Thelinx (talk))
Line 10: Line 10:
 
=== 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 ===
 
<source lang="lua">
 
<source lang="lua">
 
image = love.graphics.newImage("test.png")
 
image = love.graphics.newImage("test.png")

Revision as of 09:22, 25 March 2011

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: Image
source = love.audio.newSource("test.ogg")
print(source:type()) -- outputs: Source

See Also

Other Languages