Difference between revisions of "Sprite:setColorTransform"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 7: Line 7:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
Sprite:setColorTransform(redMultiplier,greenMultiplier,blueMultiplier,alphaMultiplier)
 
Sprite:setColorTransform(redMultiplier,greenMultiplier,blueMultiplier,alphaMultiplier)
</source>
+
</syntaxhighlight>
  
 
This adjustment also applies to the children of this sprite instance.
 
This adjustment also applies to the children of this sprite instance.

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: Sprite

Description

Sets the red, green, blue and alpha channel multipliers (values between 0 and 1). This function lets you adjust the color multipliers of a display object.

Sprite:setColorTransform(redMultiplier,greenMultiplier,blueMultiplier,alphaMultiplier)

This adjustment also applies to the children of this sprite instance.

Parameters

redMultiplier: (number, default = 1) the red multiplier of this sprite (values between 0 and 1)
greenMultiplier: (number, default = 1) the green multiplier of this sprite(values between 0 and 1)
blueMultiplier: (number, default = 1) the blue multiplier of this sprite(values between 0 and 1)
alphaMultiplier: (number, default = 1) the alpha multiplier of this sprite(values between 0 and 1)