GetBlue - ColorForm

SKSE Member of: ColorForm Script

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

SyntaxEdit

int Function GetBlue() native

ParametersEdit

None

Return ValueEdit

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

ExamplesEdit

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

See AlsoEdit