Difference between revisions of "Object:type"

m
(Updated type() output in example)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Zwraca typ obiektu jako [[string (Polski)|string]]
+
Gets the type of the object as a string.
 
+
== Function ==
== Funkcja ==
+
=== Synopsis ===
=== Sygnatura ===
 
 
<source lang="lua">
 
<source lang="lua">
typ = Object:type()
+
type = Object:type()
 
</source>
 
</source>
=== Argumenty ===
+
=== Arguments ===
Brak.
+
None.
=== Wartość zwracana ===
+
=== Returns ===
{{param|string (Polski)|typ|nazwa typu obiektu.}}
+
{{param|string|type|The type as a string.}}
== Przykłady ==
+
== Examples ==
Wypisuje nazwy typów różnych obiektów.
+
=== 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()) -- wypisze: Image
+
print(image:type()) -- outputs: Texture
 
source = love.audio.newSource("test.ogg")
 
source = love.audio.newSource("test.ogg")
print(source:type()) -- wypisze: Source
+
print(source:type()) -- outputs: Source
 
</source>
 
</source>
  
== Zobacz również ==
+
== See Also ==
* [[parent::Object (Polski)]]
+
* [[parent::Object]]
 
+
{{#set:Description=Gets the type of the object as a string.}}
== Inne języki ==
 
{{i18n|Object:type}}
 
 
 
{{#set:Description=Zwraca nazwę typu obiektu.}}
 
 
{{#set:Since=000}}
 
{{#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