Difference between revisions of "love.mouse.getY (Français)"
(Created page with "Retourne la position y actuelle de la souris. == Fonction == === Synopsis === <source lang="lua"> y = love.mouse.getY( ) </source> === Arguments === Aucun. === Retourne === {{...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | Retourne la position | + | Retourne la position actuelle de la souris sur l'axe y. |
== Fonction == | == Fonction == | ||
=== Synopsis === | === Synopsis === | ||
Line 21: | Line 21: | ||
* [[love.mouse.getX (Français)]] | * [[love.mouse.getX (Français)]] | ||
* [[love.mouse.getPosition (Français)]] | * [[love.mouse.getPosition (Français)]] | ||
− | [[Category:Functions]] | + | [[Category:Functions (Français)]] |
− | {{#set:Description=Retourne la position | + | {{#set:Description=Retourne la position actuelle de la souris sur l'axe y.}} |
{{#set:Since=000}} | {{#set:Since=000}} | ||
== Autres langues == | == Autres langues == | ||
{{i18n|love.mouse.getY}} | {{i18n|love.mouse.getY}} |
Latest revision as of 21:13, 27 December 2020
Retourne la position actuelle de la souris sur l'axe y.
Contents
Fonction
Synopsis
y = love.mouse.getY( )
Arguments
Aucun.
Retourne
number y
- La position de la souris le long de l'axe y.
Exemples
Trace une ligne horizontale à la position y de la souris.
function love.draw()
local y = love.mouse.getY()
love.graphics.line(0,y, love.graphics.getWidth(),y)
end
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