Sprite:setColorTransform

From GiderosMobile
Revision as of 15:31, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

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. <syntaxhighlight lang="lua"> Sprite:setColorTransform(redMultiplier,greenMultiplier,blueMultiplier,alphaMultiplier) </source>

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)