GetGreen - ColorForm

From the CreationKit Wiki
Jump to navigation Jump to search

SKSE Member of: ColorForm Script

Returns the green component of this color form. (This function requires SKSE)

Syntax[edit | edit source]

int Function GetGreen() native

Parameters[edit | edit source]

None

Return Value[edit | edit source]

Returns the green component of this color form. (From 0 to 255)

Examples[edit | edit source]

ActorBase pActorBase = Game.GetPlayer().GetActorBase()
ColorForm color = pActorBase.GetHairColor()
int green = color.GetGreen()
Debug.Trace("The amount of green in the players hair is " + green)
endif

See Also[edit | edit source]