Difference between revisions of "Object:type"

(Undo revision 9261 by Chien (talk))
Line 1: Line 1:
Gets the type of the object as a string.
+
Zwraca typ obiektu jako [[string (Polski)|string]]
  
== Function ==
+
== Funkcja ==
=== Synopsis ===
+
=== Sygnatura ===
 
<source lang="lua">
 
<source lang="lua">
 
type = Object:type()
 
type = Object:type()
 
</source>
 
</source>
=== Arguments ===
+
=== Argumenty ===
None.
+
Brak.
=== Returns ===
+
=== Wartość zwracana ===
{{param|string|type|The type as a string.}}
+
{{param|string (Polski)|type|nazwa typu obiektu.}}
== Examples ==
+
== Przykłady ==
=== Printing the type of an object ===
+
Wypisuje nazwy typów różnych obiektów.
 
<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()) -- wypisze: Image
 
source = love.audio.newSource("test.ogg")
 
source = love.audio.newSource("test.ogg")
print(source:type()) -- outputs: Source
+
print(source:type()) -- wypisze: Source
 
</source>
 
</source>
== See Also ==
+
 
* [[parent::Object]]
+
== Zobacz również ==
{{#set:Description=Gets the type of the object as a string.}}
+
* [[parent::Object (Polski)]]
 +
 
 +
== 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}}
 

Revision as of 19:01, 11 December 2013

Zwraca typ obiektu jako string

Funkcja

Sygnatura

type = Object:type()

Argumenty

Brak.

Wartość zwracana

string (Polski) type
nazwa typu obiektu.

Przykłady

Wypisuje nazwy typów różnych obiektów.

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

Zobacz również

Inne języki