Difference between revisions of "Pixel:setColor"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.06<br/> === Description === Sets the color of the Pixel <source lang="lua"> = Pixel:setColor(coloralpha,) </source> '''color:'''...")
 
Line 4: Line 4:
 
Sets the color of the Pixel
 
Sets the color of the Pixel
 
<source lang="lua">
 
<source lang="lua">
= Pixel:setColor(coloralpha,)
+
Pixel:setColor(color,alpha)
 
</source>
 
</source>
'''color:''' (number) new color '''optional'''<br/>
+
'''color''': (number) new color '''optional'''<br/>
'''alpha:''' (number) New alpha value '''optional'''<br/>
+
'''alpha''': (number) New alpha value '''optional'''<br/>
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
Line 13: Line 13:
 
Sets two-colour gradient fill with optional rotation to Pixel.
 
Sets two-colour gradient fill with optional rotation to Pixel.
 
<source lang="lua">
 
<source lang="lua">
= Pixel:setColor(color1alpha1color2alpha2angle,)
+
Pixel:setColor(color1,alpha1,color2,alpha2,angle)
 
</source>
 
</source>
'''color1:''' (number) First color of the gradient. ''''''<br/>
+
'''color1''': (number) First color of the gradient. ''''''<br/>
'''alpha1:''' (number) First alpha of the gradient. ''''''<br/>
+
'''alpha1''': (number) First alpha of the gradient. ''''''<br/>
'''color2:''' (number) Second color of the gradient. ''''''<br/>
+
'''color2''': (number) Second color of the gradient. ''''''<br/>
'''alpha2:''' (number) Second alpha of the gradient. ''''''<br/>
+
'''alpha2''': (number) Second alpha of the gradient. ''''''<br/>
'''angle:''' (number) Sets rotation of the gradient in degrees. Default value is 270: top-bottom gradient. '''optional'''<br/>
+
'''angle''': (number) Sets rotation of the gradient in degrees. Default value is 270: top-bottom gradient. '''optional'''<br/>
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
Line 25: Line 25:
 
Sets 4-colour gradient fill to Pixel.
 
Sets 4-colour gradient fill to Pixel.
 
<source lang="lua">
 
<source lang="lua">
= Pixel:setColor(color1alpha1color2alpha2color3alpha3color4alpha4,)
+
Pixel:setColor(color1,alpha1,color2,alpha2,color3,alpha3,color4,alpha4)
 
</source>
 
</source>
'''color1:''' (number) Color of top-left gradient corner. ''''''<br/>
+
'''color1''': (number) Color of top-left gradient corner. ''''''<br/>
'''alpha1:''' (number) Alpha of top-left gradient corner. ''''''<br/>
+
'''alpha1''': (number) Alpha of top-left gradient corner. ''''''<br/>
'''color2:''' (number) Color of top-right gradient corner. ''''''<br/>
+
'''color2''': (number) Color of top-right gradient corner. ''''''<br/>
'''alpha2:''' (number) Alpha of top-right gradient corner. ''''''<br/>
+
'''alpha2''': (number) Alpha of top-right gradient corner. ''''''<br/>
'''color3:''' (number) Color of bottom-right gradient corner. ''''''<br/>
+
'''color3''': (number) Color of bottom-right gradient corner. ''''''<br/>
'''alpha3:''' (number) Alpha of bottom-right gradient corner. ''''''<br/>
+
'''alpha3''': (number) Alpha of bottom-right gradient corner. ''''''<br/>
'''color4:''' (number) Color of bottom-left gradient corner. ''''''<br/>
+
'''color4''': (number) Color of bottom-left gradient corner. ''''''<br/>
'''alpha4:''' (number) Alpha of bottom-left gradient corner. ''''''<br/>
+
'''alpha4''': (number) Alpha of bottom-left gradient corner. ''''''<br/>

Revision as of 11:20, 23 August 2018

Available since: Gideros 2016.06

Description

Sets the color of the Pixel

 Pixel:setColor(color,alpha)

color: (number) new color optional
alpha: (number) New alpha value optional

Available since: Gideros 2011.6

Description

Sets two-colour gradient fill with optional rotation to Pixel.

 Pixel:setColor(color1,alpha1,color2,alpha2,angle)

'color1: (number) First color of the gradient. '
'alpha1: (number) First alpha of the gradient. '
'color2: (number) Second color of the gradient. '
'alpha2: (number) Second alpha of the gradient. '
angle: (number) Sets rotation of the gradient in degrees. Default value is 270: top-bottom gradient. optional

Available since: Gideros 2011.6

Description

Sets 4-colour gradient fill to Pixel.

 Pixel:setColor(color1,alpha1,color2,alpha2,color3,alpha3,color4,alpha4)

'color1: (number) Color of top-left gradient corner. '
'alpha1: (number) Alpha of top-left gradient corner. '
'color2: (number) Color of top-right gradient corner. '
'alpha2: (number) Alpha of top-right gradient corner. '
'color3: (number) Color of bottom-right gradient corner. '
'alpha3: (number) Alpha of bottom-right gradient corner. '
'color4: (number) Color of bottom-left gradient corner. '
'alpha4: (number) Alpha of bottom-left gradient corner. '