Difference between revisions of "RenderTarget:getPixel"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.06<br/> === Description === Returns single pixels color and alpha channel <source lang="lua"> (number) (number), = RenderTarget:g...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2016.06<br/>
 
'''Available since:''' Gideros 2016.06<br/>
 +
'''Class:''' [[RenderTarget]]<br/>
 +
 
=== Description ===
 
=== Description ===
Returns single pixels color and alpha channel
+
Returns single pixels color and alpha channel.
<source lang="lua">
+
<syntaxhighlight lang="lua">
(number) (number), = RenderTarget:getPixel(xy,)
+
(number), (number) = RenderTarget:getPixel(x,y)
</source>
+
</syntaxhighlight>
'''x:''' (number) x coordinate of pixel ''''''<br/>
+
 
'''y:''' (number) y coordinate of pixel ''''''<br/>
+
=== Parameters ===
 +
'''x''': (number) x coordinate of pixel<br/>
 +
'''y''': (number) y coordinate of pixel<br/>
 +
 
 +
=== Return values ===
 
'''Returns''' (number) color in hex<br/>
 
'''Returns''' (number) color in hex<br/>
 
'''Returns''' (number) alpha value from 0 to 1<br/>
 
'''Returns''' (number) alpha value from 0 to 1<br/>
 +
 +
{{RenderTarget}}

Latest revision as of 15:32, 13 July 2023

Available since: Gideros 2016.06
Class: RenderTarget

Description

Returns single pixels color and alpha channel.

(number), (number) = RenderTarget:getPixel(x,y)

Parameters

x: (number) x coordinate of pixel
y: (number) y coordinate of pixel

Return values

Returns (number) color in hex
Returns (number) alpha value from 0 to 1