GetBlue - ColorForm

From the CreationKit Wiki
Revision as of 16:06, 10 May 2012 by imported>PurpleLunchbox (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' ColorForm Script Returns the blue component of this color form. (This function require...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SKSE Member of: ColorForm Script

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

Syntax[edit | edit source]

int Function GetBlue() native

Parameters[edit | edit source]

None

Return Value[edit | edit source]

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

Examples[edit | edit source]

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 Also[edit | edit source]