Shape:getType (Français)
Récupère une chaîne de caractère représentant la Shape (forme).
Cette fonction peut être utile pour le tracé de débogue conditionnel.
Contents
Fonction
Synopsis
type = Shape:getType( )
Arguments
Aucun.
Retourne
ShapeType (Français) type
- Le type de la Shape (forme).
Exemples
Écrire le type d'une forme
shape1 = love.physics.newCircleShape( my_body, 0, 0, 20 )
print(shape1:getType()) -- Sortie : 'circle'
shape2 = love.physics.newPolygonShape( my_body, ... )
print(shape2:getType()) -- Sortie : 'polygon'
shape3 = love.physics.newRectangleShape( my_body, x, y, w, h, angle )
print(shape3:getType()) -- Sortie : 'polygon'
Voir également
Autres langues
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